我正在使用python请求做一个简单的帖子,我需要发送一个.png图像。
...
headers ={'User-Agent':'Mozilla/5.0 , ...}
url = "http://example_url/xxx"
files = {'image': open('a.png', 'rb')}
response = requests.post(url,headers=headers,files=files,)
print (response.status_code)
return response.text
无法弄清楚为什么我从服务器收到了413响应代码。
谢谢
413是有效负载太大。这是来自服务器的配置。检查此URL https://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too-large/
祝你好运!