- 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
推薦閱讀
- Go Web編程
- OpenStack Cloud Computing Cookbook(Third Edition)
- Java Web開發學習手冊
- 微信公眾平臺與小程序開發:從零搭建整套系統
- C語言程序設計案例教程(第2版)
- AngularJS Web Application Development Blueprints
- 深入淺出Spring Boot 2.x
- Java虛擬機字節碼:從入門到實戰
- Python程序設計
- MATLAB定量決策五大類問題
- Java性能權威指南(第2版)
- HTML5+CSS3網站設計基礎教程
- 金融商業數據分析:基于Python和SAS
- Java核心技術速學版(第3版)
- Node.js Web Development