用 python 的 request 来 post url,参数总是传不进去
···
headers = {'content-type': 'application/json'}
payload = {'group_name': 'env', 'host_name': '
192.168.xxx.xxx'}
r =
requests.post('http://0.0.0.0:5000/xxx', data=json.dumps(payload), headers=headers)
print(r.text)
···
会返回如下:
{
"errors": [
"'group_name' is a required property",
"'host_name' is a required property"
],
"message": "Unprocessable Entity"
}
我用 postman 去 post 就是可以的,木有任何问题,这是为什么?
更新一下:
用 postman 看到的 header 如下:
Content-Length →66
Content-Type →text/plain; charset=utf-8
Date →Mon, 06 Nov 2017 08:56:04 GMT
Server →Werkzeug/0.12.2 Python/2.7.14
然后我将代码中的 headers = {'content-type': 'application/json'}改成 headers = {'Content-Type': 'text/plain'}
然后 print r.headers,结果是
{'Date': 'Mon, 06 Nov 2017 08:55:39 GMT',
'Content-Length': '159',
'Content-Type': 'application/json',
'Server': 'Werkzeug/0.12.2 Python/2.7.14'}
http://0.0.0.0:5000/tower/inventory
Content-Type 并没有生效,why
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/404003
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.