Hypertext Transfer Protocol (HTTP) Question: Download HTTP PDF

For what purposes POST is used?

Tweet Share WhatsApp

Answer:

POST is used when the processing you wish to happen on the server should be repeated, if the POST request is repeated (that is, they are not idempotent; more on that below). In addition, POST requests should cause processing of the request body as a subordinate of the URL you are posting to.
In plain words:
1 POST /clients/

Download HTTP PDF Read All 44 HTTP Questions
Previous QuestionNext Question
Described the most important HTTP verbs?What are the safe and unsafe methods of HTTP?