- Building Microservices with Go
- Nic Jackson
- 63字
- 2021-07-15 17:28:08
GET
The GET method is used to retrieve a resource and should never be used to mutate an operation, such as updating a record. Typically, a body is not passed with a GET request; however, it is not an invalid HTTP request to do so.
Request:
GET /v1/cats HTTP/1.1
Response:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: xxxx
{"name": "Fat Freddie's Cat", "weight": 15}
推薦閱讀
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- Progressive Web Apps with React
- Python 深度學習
- 劍指JVM:虛擬機實踐與性能調優
- OpenNI Cookbook
- Mastering Ubuntu Server
- 用Flutter極速構建原生應用
- C#程序設計
- Learning Python Design Patterns
- Mastering JBoss Enterprise Application Platform 7
- 計算機應用基礎教程(Windows 7+Office 2010)
- Clojure for Java Developers
- Hacking Android
- DB2SQL性能調優秘笈
- Python編程快速上手2