|
|
|
|
|
by brainwipe
1626 days ago
|
|
In HTTP idempotent is where the state of the server remains unchanged. A resource in HTTP is what you get back from an URL, so https://example.com/people/show/10 (where 10 is the page number) is a different resource to https://example.com/people/show/100. If I interpret it correctly - adding more resources isn't changing the server state but adding more ways of getting to the state. |
|
This is incorrect. DELETE is idempotent but changes the state of the server.