Related questions
REST API error code 500 handling
We are building a new REST API.
I was arguing that error code 500 (Internal Server Error) should never be returned.
Now, of course if you know the client's params are wrong or something you have everything under control and can …
PUT vs. POST in REST
According to the HTTP/1.1 Spec:
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line
In other words, …
How are parameters sent in an HTTP POST request?
In an HTTP GET request, parameters are sent as a query string:
http://example.com/page?parameter=value&also;=another
In an HTTP POST request, the parameters are not sent along with the URI.
Where are the values? In …