HTTP Methods - GET vs POST
recommendation for Django tutorial
HTTP Protocol
Request Methods GET POST PUT DELETE HEAD CONNECT OPTION TRACE PATCH
GET
: fetch data from the server
The data is sent to the address bar. So we don’t want to use GET
for private data such as userID and password
POST
: update data of the server
Use CSRF Token
for this method