0

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.

zoul
  • 102,279
  • 44
  • 260
  • 354
Jenny
  • 251
  • 2
  • 7
  • 14

1 Answers1

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