firecracker-microvm/micro-http

HTTP HEAD and POST methods are needed to support RESTful API

imeoer opened this issue · 0 comments

In general, we need to use these HTTP methods to support RESTful style API:

GET -> Get Resource
HEAD -> Get Resource Metadata
POST -> Create Resource
PUT -> Update Whole Resource
DELETE -> Delete Resource
PATCH -> Update Part Of Resource

micro-http still lacks POST and HEAD after #13 .