|
|
|
|
|
by dullgiulio
2119 days ago
|
|
I really cannot agree with the "just use GET" suggestion. GET must not be used for actions that modify the data server-side. Also, POST and PUT means some action is or is not idempotent. Using different methods than GET is easy in the browser (easier than JSON-P) and avoids a huge class of problems that come with abusing GET. |
|