According to the HTTP/1.1 Spec:
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line
In other words, …
In an HTTP GET request, parameters are sent as a query string:
http://example.com/page?parameter=value&also;=another
In an HTTP POST request, the parameters are not sent along with the URI.
Where are the values? In …
Canonical
How can I make an HTTP request and send some data using the POST method?
I can do a GET request, but I have no idea of how to make a POST request.