gpt4 book ai didi

python - 在 appengine python 中使用 multipart/form-data 发布请求不起作用

转载 作者:太空狗 更新时间:2023-10-30 00:37:01 26 4
gpt4 key购买 nike

我正在尝试将来自应用引擎应用程序的多部分发布请求发送到托管在 dotcloud 上的外部 (django) api。该请求包括一些文本和一个文件 (pdf),并使用以下代码发送

from google.appengine.api import urlfetch
from poster.encode import multipart_encode
from libs.poster.streaminghttp import register_openers

register_openers()
file_data = self.request.POST['file_to_upload']
the_file = file_data
send_url = "http://127.0.0.1:8000/"
values = {
'user_id' : '12341234',
'the_file' : the_file
}

data, headers = multipart_encode(values)
headers['User-Agent'] = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'
data = str().join(data)
result = urlfetch.fetch(url=send_url, payload=data, method=urlfetch.POST, headers=headers)
logging.info(result.content)

当此方法运行时,Appengine 会给出以下警告(我不确定是否与我的问题有关)

Stripped prohibited headers from URLFetch request: ['Content-Length']

Django 通过以下错误发送

<class 'django.utils.datastructures.MultiValueDictKeyError'>"Key 'the_file' not found in <MultiValueDict: {}>"

django 代码非常简单,当我使用 postman chrome 扩展程序发送文件时可以正常工作。

@csrf_exempt
def index(request):
try:
user_id = request.POST["user_id"]
the_file = request.FILES["the_file"]
return HttpResponse("OK")
except:
return HttpResponse(sys.exc_info())

如果我添加

print request.POST.keys()

我得到一个包含 user_id 和 the_file 的字典,表明该文件没有作为文件发送。如果我对文件做同样的事情,即

print request.FILES.keys()    

我得到一个空列表 []。

编辑 1:

我已经更改了我的问题以实现某人的建议,但这仍然失败。我还包含了 Glenn 发送的链接推荐的 header 添加,但并不令人高兴。

编辑 2:

我还尝试将 the_file 作为

的变体发送
the_file = file_data.file
the_file = file_data.file.read()

但我得到了同样的错误。

编辑 3:

我还尝试将我的 django 应用程序编辑为

the_file = request.POST["the_file"]

但是当我尝试在本地保存文件时

path = default_storage.save(file_location, ContentFile(the_file.read()))

它失败了

<type 'exceptions.AttributeError'>'unicode' object has no attribute 'read'<traceback object at 0x101f10098>

类似地,如果我尝试访问 the_file.file(因为我可以在我的 appengine 应用程序中访问),它会告诉我

<type 'exceptions.AttributeError'>'unicode' object has no attribute 'file'<traceback object at 0x101f06d40>

最佳答案

这是我在本地测试的一些代码,应该可以解决问题(我使用了与 webapp2 不同的处理程序,但尝试将其修改为 webapp2。您还需要在此处找到的海报库 http://atlee.ca/software/poster/ ):

在 GAE 上的 POST 处理程序中:

from google.appengine.api import urlfetch
from poster.encode import multipart_encode
payload = {}
payload['test_file'] = self.request.POST['test_file']
payload['user_id'] = self.request.POST['user_id']
to_post = multipart_encode(payload)
send_url = "http://127.0.0.1:8000/"
result = urlfetch.fetch(url=send_url, payload="".join(to_post[0]), method=urlfetch.POST, headers=to_post[1])
logging.info(result.content)

确保您的 HTML 表单包含 method="POST"enctype="multipart/form-data"。希望这对您有所帮助!

编辑:我尝试使用 webapp2 处理程序并意识到提供文件的方式与我用来测试的框架的工作方式不同 (KAY)。这是应该可以解决问题的更新代码(已在生产环境中测试):

import webapp2
from google.appengine.api import urlfetch
from poster.encode import multipart_encode, MultipartParam

class UploadTest(webapp2.RequestHandler):
def post(self):
payload = {}
file_data = self.request.POST['test_file']
payload['test_file'] = MultipartParam('test_file', filename=file_data.filename,
filetype=file_data.type,
fileobj=file_data.file)
payload['name'] = self.request.POST['name']
data,headers= multipart_encode(payload)
send_url = "http://127.0.0.1:8000/"
t = urlfetch.fetch(url=send_url, payload="".join(data), method=urlfetch.POST, headers=headers)
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write(t.content)
def get(self):
self.response.out.write("""
<html>
<head>
<title>File Upload Test</title>
</head>
<body>
<form action="" method="POST" enctype="multipart/form-data">
<input type="text" name="name" />
<input type="file" name="test_file" />
<input type="submit" value="Submit" />
</form>
</body>
</html>""")

关于python - 在 appengine python 中使用 multipart/form-data 发布请求不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10066540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com