Request with GET/HEAD method cannot have body.
时间: 2023-11-04 17:27:38 浏览: 293
python requests.get带header
5星 · 资源好评率100%
That is correct. HTTP GET and HEAD requests cannot have a request body. The HTTP specification states that GET and HEAD requests only request information from the server, and should not have any side effects. Therefore, they do not require a request body. The request parameters for a GET or HEAD request are typically passed in the URL query string, rather than in the request body.
阅读全文