The difference between POST and GET and PUT and DELETE

1. GET puts the data after the http header URL, if it is Chinese encrypted by base64, the English and numbers are displayed as it is, and POST is put in the body

2. GET has restrictions on the length of data, POST has no restrictions

3. GET is more secure than POST. GET uses clear text transmission, while POST can be clear text or encrypted

4. GET is faster than POST

Application scenario
put: add
delete: delete
post: change
get: check

Guess you like

Origin blog.csdn.net/A_Intelligence/article/details/78135542