Get Vs Post Method. POST and GET are two HTTP request methods. 2 Get request is not secured because data is exposed in URL bar.
Post request is secured because data is not exposed in. Data is visible to everyone in the URL. 2 Get request is not secured because data is exposed in URL bar.
From credit cards to payments logins to forms all trust this method for sending requests to the server.
And so using GET as the method for an HTML form that collects a password or other sensitive information is not the best idea. Post 1 In case of Get request only limited amount of data can be sent because data is sent in header. GET has a limitation on the length of the values generally 255 characters whereas POST has no limitation on the length of the values since they are submitted via the body of HTTP. Never use GET when sending passwords or other sensitive information.
