|
- What is the difference between POST and PUT in HTTP?
PUT is used by FB to update the comment because an existing resource is being updated, and that is what PUT does (updates a resource) PUT happens to be idempotent, in contrast to POST
- Whats the difference between a POST and a PUT HTTP REQUEST?
An HTTP PUT is supposed to accept the body of the request, and then store that at the resource identified by the URI An HTTP POST is more general It is supposed to initiate an action on the server That action could be to store the request body at the resource identified by the URI, or it could be a different URI, or it could be a different
- Using PUT method in HTML form - Stack Overflow
Can I use a PUT method in an HTML form to send data from the form to a server?
- Should a RESTful PUT operation return something. . . .
I was wondering what people's opinions are of a RESTful PUT operation that returns nothing (null) in the response body
- Use of PUT vs PATCH methods in REST API real life scenarios
Since PUT requests include the entire entity, if you issue the same request repeatedly, it should always have the same outcome (the data you sent is now the entire data of the entity) Therefore PUT is idempotent Using PUT wrong What happens if you use the above PATCH data in a PUT request?
- What is the difference between PUT, POST, and PATCH?
Difference between PUT, POST, GET, DELETE and PATCH in HTTP Verbs: The most commonly used HTTP verbs POST, GET, PUT, DELETE are similar to CRUD (Create, Read, Update and Delete) operations in database
- java - Does put overwrite existing values? - Stack Overflow
This confused the hell out of me at first because in my data structures class we put considerable time into discussing the various ways to deal with collisions, such as the item at the next available index or putting arrays in each key
- HTTP protocols PUT and DELETE and their usage in PHP
use PUT when you need to replace the state of some data already existing on that system use DELETE when you need to delete a resource (relative to the URI you've sent) on that system use OPTIONS when you need to get the communication options from a resource, so for checking allowed methods for that resource
|
|
|