Why can the address with parameters return the result, but the normal post returns 401?

Why can the address with parameters return the result, but the normal post returns 401?

Sep.16,2021

address with parameters is a get request, right? The post request does not have a parameter address. If you want to ask what request method you need in the backend


get and post request method, this is decided by your background. Communicate with your background


to add a little bit. If the backend really gives you post and get requests to submit data, there are generally additional security verification rules when dealing with post requests, such as csrf_token.

.
Menu