HTTP for REST
- Delicious only uses GET.
- Good REST calls for:
- GET: retrieve a resource.
- PUT: modify an existing resource.
- DELETE: delete resource.
- POST: create subordinate resource.
- GET is safe: does not change anything in server.
- GET, PUT, DELETE are idempotent: can be safely done many times.
José M. Vidal
.
7 of 8