我正在尝试修改请求库文档中的example,以包含从用户上传的文件(到appengine应用程序)。我尝试过以下方法:
from libs import requests
file_data = self.request.POST['file_to_upload']
the_file = file_data
send_url = "http://httpbin.org/post"
values = {
'user_id' : '1234',
'file_name' : 'some_file.pdf'
}
r = requests.post(send_url, files=the_file)
logging.info(r.content)
然而,这会返回
{
"origin": "81.178.201.22",
"files": {},
"form": {},
"url": "http://httpbin.org/post",
"args": {},
"headers": {
"Content-Length": "0",
"Accept-Encoding": "identity, deflate, compress, gzip",
"Connection": "keep-alive",
"Accept": "*/*",
"User-Agent": "python-requests/0.11.1 AppEngine-Google; (+http://code.google.com/appengine)",
"Host": "httpbin.org",
"Content-Type": ""
},
"json": null,
"data": ""
}
即。没有收到文件。我也尝试将the_file发送为
file_data.file
file_data.file.read()
然而,这些也失败了。最终,我想在同一个帖子请求中包含两个“值”和文件,所以类似于:
r = requests.post(send_url, data=values, files=the_file)
然而这也不起作用 - 我想我需要先修复上面的代码。知道我做错了什么?
答案 0 :(得分:0)
您能否提供用于显示上传表单的HTML代码? 有时,表单上传失败,因为它缺少一些HTML属性。
答案 1 :(得分:0)
GAE不支持请求库。 看看这个:Using the Requests python library in Google App Engine