Response 413-Python请求尝试POST .png文件

问题描述 投票:0回答:1

我正在使用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响应代码。

谢谢

python post python-requests http-status-code-413
1个回答
0
投票

413是有效负载太大。这是来自服务器的配置。检查此URL https://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too-large/

祝你好运!

© www.soinside.com 2019 - 2024. All rights reserved.