- Building Microservices with Go
- Nic Jackson
- 56字
- 2021-07-15 17:28:09
OPTIONS
The OPTIONS verb is used when a client would like to retrieve the possible interactions for a resource. Typically, the server will return an Allow header, which will include the HTTP verbs that can be used with this resource.
Request:
OPTIONS /v1/cats/12343 HTTP/1.1
Content-Length: 0
Response:
HTTP/1.1 200 OK
Content-Length: 0
Allow: GET, PUT, DELETE
推薦閱讀
- ASP.NET Core 5.0開發入門與實戰
- 深入理解Java7:核心技術與最佳實踐
- SQL基礎教程(視頻教學版)
- Go并發編程實戰
- Mathematica Data Analysis
- SQL經典實例(第2版)
- Building Android UIs with Custom Views
- Deep Learning with R Cookbook
- IoT Projects with Bluetooth Low Energy
- Training Systems Using Python Statistical Modeling
- Android Sensor Programming By Example
- PhoneGap 4 Mobile Application Development Cookbook
- JavaScript悟道
- Windows 10 for Enterprise Administrators
- Boost.Asio C++ Network Programming Cookbook