Most voted "http-methods" questions
Or "method", in English, is the verb to be used and tells the server which operation will be executed in a given resource. Use the tag when your question is directly related to the use of one or more verbs or when you don’t know what to use
Learn more…8 questions
Sort by count of
-
40
votes3
answers33382
viewsWhat are the HTTP request methods, and what is the difference between them?
What are the HTTP request methods, among which are GET, POST and DELETE? What to use each of them, and what is the difference between them?
-
31
votes4
answers52318
viewsWhat is the difference between PUT and POST?
Some teach that POST is to send data to create something and that PUT is to update, but found poorly explained. So, after all, what is the difference between the PUT method and the POST? When I must…
-
13
votes1
answer10486
viewsWhat is the difference between the PUT method and the PATCH?
Some teach that to upgrade uses the PUT and others teach using the PATCH. So, after all, what is the difference between the PUT method and the PATCH? When I must wear one and the other?…
-
12
votes1
answer261
viewsWhat should the server return in an OPTIONS request?
Before sending any request to the server, browsers automatically send a request of the type OPTIONS to know some server information What information does the server need to send? Only CORS headers?…
-
7
votes2
answers1181
viewsWhy don’t browsers implement HTTP’s PUT and DELETE protocols?
For some reason the Internet browsers (Chrome, Firefox, IE, ...) decided to only implement the GET and POST methods of the HTTP protocol. Other methods such as PUT and DELETE were left out. Why? My…
-
2
votes1
answer523
viewsHow to use other HTTP methods in HTML forms?
I’m using Express.JS to make a CRUD in Nodejs. I was trying to make use of the new HTTP methods, such as put , but when I put it in the attribute method of the apparently not certain form. The code…
-
1
votes1
answer93
viewsApache2 is not accepting PUT request method
I tried to file a requisition for the guy PUT in a project of mine, but is being returned the following error: The requested method PUT is not allowed for the URL /index.php I’m using PHP to make…
-
1
votes1
answer570
viewsHow do I get parameters from a PUT request?
I am starting to study Web Service and created an example of an API in REST. I am passing parameters via PUT to the API and picking up with the parse_str in PHP but what comes back to me is…