Thursday 3 March 2016

Difference between HTTP POST and HTTP GET method


HTTP GET-

In Http Get Method all the values that user sends to the server, embedded with the URL that we send as service request, where a third party can easily hack it. In more technical way, by using the HTTP GET method, we are sending user details in the header part of the request not in the body.

HTTP POST -

Where as in Http Post method we transfer confidential data to a different location by using HTTP. The reason is the content goes inside the body, not with the header as in GET method.




No comments:

Post a Comment