烧瓶根据邮递员的邮寄请求返回 400
Posted
技术标签:
【中文标题】烧瓶根据邮递员的邮寄请求返回 400【英文标题】:flask returns 400 on post request from postman 【发布时间】:2017-05-16 20:30:03 【问题描述】:我正在 lynda 上做一个烧瓶课程,但遇到了一个例子。 https://www.lynda.com/Flask-tutorials/Web-API-Development-Flask/521200-2.html
我正在做一个简单的帖子,它在使用基本网络表单时有效,但在邮递员中失败。我认为这是因为邮递员对请求进行了不同的编码,但无法弄清楚为什么会这样做或为什么烧瓶无法读取它。
邮递员:
在 Charles 中截获的请求:
POST /api/candidate HTTP/1.1
Host: localhost:5000
Content-Length: 248
Postman-Token: 285ed4d8-2af6-0eb6-8de7-e8ecb41fb86e
Cache-Control: no-cache
Origin: chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.8
------WebKitFormBoundary3Q45bnchdpXxtZbw
Content-Disposition: form-data; name="first_name"
Susan
------WebKitFormBoundary3Q45bnchdpXxtZbw
Content-Disposition: form-data; name="last_name"
Kruger
------WebKitFormBoundary3Q45bnchdpXxtZbw--
返回:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>400 Bad Request</title>
<h1>Bad Request</h1>
<p>The browser (or proxy) sent a request that this server could not understand.</p>
来自简单 POST 网络表单的请求:
POST /api/candidate HTTP/1.1
Host: localhost:5000
Content-Length: 33
Cache-Control: max-age=0
Origin: null
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.8
first_name=Mickey&last_name=Mouse
返回(正确):
"id": "a7c2f6a3-e8d2-4c53-be97-ccf72a04295d",
"url": "/api/candidate/a7c2f6a3-e8d2-4c53-be97-ccf72a04295d"
相关python代码: @app.route("/api/candidate", methods=["POST"])
def add_candidate():
print dict(request.form)
first_name = request.form["first_name"]
last_name = request.form["last_name"]
new_candidate_id = DATA_PROVIDER.add_candidate(first_name, last_name)
return jsonify(
"id": new_candidate_id,
"url": url_for("candidate_by_id", id=new_candidate_id)
)
打印失败时的输出:
'------WebKitFormBoundary3Q45bnchdpXxtZbw\r\nContent-Disposition: form-data; name': [u'"first_name"\r\n\r\nSusan\r\n------WebKitFormBoundary3Q45bnchdpXxtZbw\r\nContent-Disposition: form-data; name="last_name"\r\n\r\nKruger\r\n------WebKitFormBoundary3Q45bnchdpXxtZbw--\r\n']
工作时的打印输出:
'first_name': [u'Mickey'], 'last_name': [u'Mouse']
【问题讨论】:
【参考方案1】:来自 Web 表单的工作请求有一个 Content-Type
标头,其值为 application/x-www-form-urlencoded
。
您的屏幕截图显示 Postman 正在使用 form-data
:
尝试选择application/x-www-form-urlencoded
。
【讨论】:
谢谢你修复它,有时它真的很明显。 当你处理一个问题时,你往往会忽略其他头脑空洞的人可以很快发现的细节 =) 谢谢@slezica。我有一个类似的问题。我把它设置为原始的。但是我还是不明白这三者的区别。 Raw 显然没有指定任何编码。对于这样一个基本的疑问,我很抱歉,我是服务器端编程的新手。以上是关于烧瓶根据邮递员的邮寄请求返回 400的主要内容,如果未能解决你的问题,请参考以下文章
烧瓶 api 端点使用邮递员返回正确的响应,但不使用浏览器(chrome)