If GET method is less secure than POST method then why they introduced GET method.and we\'ll use only POST method alone.wats the need for GET here?

Showing Answers 1 - 3 of 3 Answers

Using GET method form data is appended to URL while using POST method it is transferred in the message body.
GET method  is intended for information retrieval.  It should be used to retrieve information that do not change state of server.
For functions such as login, POST method is preferable due to security reasons.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions