Top "Put" questions

PUT is a HTTP method which requests that the enclosed entity be stored under the supplied URL.

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 …

http rest post put
What's the difference between a POST and a PUT HTTP REQUEST?

They both seem to be sending data to the server inside the body, so what makes them different?

http post put
How to send a PUT/DELETE request in jQuery?

GET:$.get(..) POST:$.post().. What about PUT/DELETE?

jquery httprequest put
Use of PUT vs PATCH methods in REST API real life scenarios

First of all, some definitions: PUT is defined in Section 9.6 RFC 2616: The PUT method requests that the enclosed entity be …

json rest http put http-method
How to send PUT, DELETE HTTP request in HttpURLConnection?

I want to know if it is possible to send PUT, DELETE request (practically) through java.net.HttpURLConnection to HTTP-based …

java httpurlconnection put http-delete
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.

resources rest service put
RAW POST using cURL in PHP

How can I do a RAW POST in PHP using cURL? Raw post as in without any encoding, and my …

php post curl put
How to send a POST request with BODY in swift

I'm trying to make a post request with a body in swift using Alamofire. my json body looks like : { "IdQuiz" : 102, "…

json swift put alamofire
Is there any way to do HTTP PUT in python

I need to upload some data to a server using HTTP PUT in python. From my brief reading of the …

python http put
Test file upload using HTTP PUT method

I've written a service using HTTP PUT method for uploading a file. Web Browsers don't support PUT so I need …

http curl put