1
0
Fork 0
lets-talk-apis/slides/a-restful-example.md

16 lines
435 B
Markdown
Raw Normal View History

2015-10-12 14:36:14 -04:00
## A RESTful Example
2015-10-12 17:11:41 -04:00
Simple sample
2015-10-12 14:36:14 -04:00
2015-10-12 17:11:41 -04:00
* List: GET /jokes
* Create: POST /jokes
* Show: GET /jokes/1
* Update: PUT /jokes/1
* Delete: DELETE /jokes/1
note:
curl --data 'joke[joke]=Why did the chicken get to the other side&joke[punchline]=To get to the other side' http://localhost:9292/jokes
curl -X PUT --data 'joke[joke]=New Joke&joke[punchline]=Punchline' http://localhost:9292/jokes/1
curl -X DELETE http://localhost:9292/jokes/1