python使用JSON数据发出POST请求

时间:2014-06-17 01:10:09

标签: python json curl python-requests

我试图模仿卷曲请求我正在使用python进行调用。注意

  • HTTPS请求
  • 忽略SSL ceritification验证
  • 我的服务器是django

我使用的curl命令是

curl -k --dump-header - -H "Content-Type: application/json" -X POST --data '{"environment_name": "foo"}' https://localhost/api/v1/environment/

并且服务器的响应成功

HTTP/1.1 201 CREATED
Date: Tue, 17 Jun 2014 00:59:59 GMT
Server: Server
Vary: Accept-Language,Cookie,User-Agent
Content-Language: en-us
Location: https://localhost/api/v1/environment/None/
Status: 201 CREATED
Content-Length: 0
Cneonction: close
Content-Type: text/html; charset=utf-8

然而,当我尝试在python中使用' request'我的脚本是

import json
data = {'enviornment_name' : 'foo'}

headers = {'Content-type' : 'application/json'}
response = requests.post("https://localhost/api/v1/environment", headers=headers, data=data, verify=False)

运行脚本时,我会返回一个巨大的堆栈跟踪,但红色的部分是

E                   DecodeError: ('Received response with content-encoding: gzip, but failed to decode it.', error('Error -3 while decompressing: incorrect data check',))

我不知道为什么我的脚本可以通过python工作

2 个答案:

答案 0 :(得分:5)

您的服务器声称要返回不是gzip的内容。响应在标头中返回Content-Encoding: gzip。这可能是因为在请求中,默认情况下会发送Accept-Encoding: gzip, compress。除了评论中的@ Fabricator建议外,您还应尝试在标题词典中将"Accept-Encoding"设置为None

您的标题词典将如下所示:

headers = {'Content-Type': 'application/json', 'Accept-Encoding': None}

您对请求的调用看起来像

requests.post(url, headers=headers, data=json.dumps(data), verify=False)

答案 1 :(得分:0)

@Fabricator我需要verify = False但是我注意到我的代码中的一件事是我正在使用的服务器的问题我需要在URI的末尾加上'/'。此外,我还需要json.dumps(数据)而不是json.dump(数据)以防其他人正在寻找。谢谢你的帮助