InterviewSolution
| 1. |
For What Purposes Post Is Used? |
|
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/ 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/ |
|