I'm reading about RESTful Web Services and I know there are GET, HEAD, OPTIONS, PUT, DELETE, and POST methods, I'm just wondering how you know when and where to use them.
Asked
Active
Viewed 209 times
1 Answers
2
PUT = object creation
POST = object update / taking some action with side effects
DELETE = object deletion
GET = Normal page, no side effects

Tyler Eaves
- 12,879
- 1
- 32
- 39