发送带有枕头图片的POST请求

时间:2019-02-09 23:30:04

标签: python request python-imaging-library pymongo

我从pymongo得到这样的图像:

    def get_my_photo(self, user_id):
        res = self.db.find_one({'user_id': user_id})
        image_data = BytesIO(res['photo'])
        image = Image.open(image_data)
        image_data = BytesIO()
        image.save(image_data, "JPEG")
        image_data.seek(0)
        return image_data

然后我尝试发送带有image_data的POST请求:

request = requests.post(url, files={'photo': image})

但是标题是: 'Content-Type': 'text/html; charset=windows-1251'。 而且没有照片上传。 如何正确发送带有请求的枕头图像?谢谢。

编辑:在this post

中找到解决方案

0 个答案:

没有答案