gpt4 book ai didi

python - 多部分解析器错误 :- Invalid boundary

转载 作者:行者123 更新时间:2023-11-28 19:54:43 25 4
gpt4 key购买 nike

我尝试使用 Python 请求模块将一些数据和文件发送到我的 django rest 应用程序,但出现以下错误。

    raise MultiPartParserError('Invalid boundary in multipart: %s' % boundary)
MultiPartParserError: Invalid boundary in multipart: None

代码:-

import requests
payload={'admins':[
{'first_name':'john'
,'last_name':'white'
,'job_title':'CEO'
,'email':'test1@gmail.com'
},
{'first_name':'lisa'
,'last_name':'markel'
,'job_title':'CEO'
,'email':'test2@gmail.com'
}
],
'company-detail':{'description':'We are a renowned engineering company'
,'size':'1-10'
,'industry':'Engineering'
,'url':'http://try.com'
,'logo':''
,'addr1':'1280 wick ter'
,'addr2':'1600'
,'city':'rkville'
,'state':'md'
,'zip_cd':'12000'
,'phone_number_1':'408-393-254'
,'phone_number_2':'408-393-221'
,'company_name':'GOOGLE'}
}
files = {'upload_file':open('./test.py','rb')}
import json
headers = {'content-type' : 'application/json'}
headers = {'content-type' : 'multipart/form-data'}

#r = requests.post('http://127.0.0.1:8080/api/create-company-profile/',data=json.dumps(payload),headers=headers,files=files)
r = requests.post('http://127.0.0.1:8080/api/create-company-profile/',data=payload,headers=headers,files=files)
print r.status_code
print r.text

Django 代码:-

class CompanyCreateApiView(CreateAPIView):
parser_classes = (MultiPartParser, FormParser,)
def post(self, request, *args, **kwargs):
print 'request ==', request.data

最佳答案

好吧,我忘了你的标题。根据the spec :

Content-Type   = "Content-Type" ":" media-type

MIME provides for a number of "multipart" types -- encapsulations of one or more entities within a single message-body. All multipart types share a common syntax, ... and MUST include a boundary parameter as part of the media type value.

这是包含 multipart/form-data 的请求的样子:

POST /myapp/company/ HTTP/1.1
Host: localhost:8000
Content-Length: 265
Accept-Encoding: gzip, deflate
Accept: */*
User-Agent: python-requests/2.9.0
Connection: keep-alive
Content-Type: multipart/form-data; boundary=63c5979328c44e2c869349443a94200e

--63c5979328c44e2c869349443a94200e
Content-Disposition: form-data; name="hello"

world
--63c5979328c44e2c869349443a94200e
Content-Disposition: form-data; name="mydata"; filename="data.txt"

line 1
line 2
line 3
line 4

--63c5979328c44e2c869349443a94200e--

查看数据的各个部分是如何被边界分隔的:

--63c5979328c44e2c869349443a94200e--

这个想法是使用一些不太可能出现在数据中的边界。请注意,边界包含在 Content-Type 中。请求头。

该请求是由这段代码产生的:

import requests

myfile = {'mydata': open('data.txt','rb')}

r = requests.post(url,
#headers = myheaders
data = {'hello': 'world'},
files = myfile
)

看起来您正在仔细注意 django-rest-framework docs 中的以下注释:

Note: When developing client applications always remember to make sure you're setting the Content-Type header when sending data in an HTTP request.

If you don't set the content type, most clients will default to using 'application/x-www-form-urlencoded', which may not be what you wanted.

但是当你使用 requests 时,如果您指定 Content-Type标题自己,然后 requests假设您知道自己在做什么,并且它不会覆盖您的 Content-Type带有 Content-Type 的 header 它会提供的标题。

您没有在 Content-Type 中提供边界 header ——根据需要。你怎么能?您没有组装请求的主体并创建边界来分隔各种数据,因此您不可能知道边界是什么。

django-rest-framework注意说你应该包括一个 Content-Type在您的请求中 header ,真正的意思是:

You or any programs you use to create the request need to include a Content-Type header.

所以@AChampion 在评论中完全正确:let requests提供 Content-Type header ,毕竟 requests文档广告:

Requests takes all of the work out of Python HTTP/1.1

requests像这样工作:如果你提供 files关键字 arg,则请求使用 Content-Type multipart/form-data 的标题并在标题中指定边界;然后requests使用边界组装请求的主体。如果您提供 data关键字参数然后请求使用 Content-Typeapplication/x-www-form-urlencoded ,它只是将字典中的所有键和值组装成这种格式:

x=10&y=20

不需要边界。

而且,如果您同时提供 files关键字 arg 和 data关键字 arg,则请求使用 Content-Typemultipart/form-data .

关于python - 多部分解析器错误 :- Invalid boundary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34326150/

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