使用Python请求发布JSON


632

我需要将JSON从客户端发布到服务器。我正在使用Python 2.7.1和simplejson。客户端正在使用请求。服务器是CherryPy。我可以从服务器获取硬编码的JSON(代码未显示),但是当我尝试将JSON POST到服务器时,会收到“ 400 Bad Request”。

这是我的客户代码:

data = {'sender':   'Alice',
    'receiver': 'Bob',
    'message':  'We did it!'}
data_json = simplejson.dumps(data)
payload = {'json_payload': data_json}
r = requests.post("http://localhost:8080", data=payload)

这是服务器代码。

class Root(object):

    def __init__(self, content):
        self.content = content
        print self.content  # this works

    exposed = True

    def GET(self):
        cherrypy.response.headers['Content-Type'] = 'application/json'
        return simplejson.dumps(self.content)

    def POST(self):
        self.content = simplejson.loads(cherrypy.request.body.read())

有任何想法吗?


我在文档中直接使用了示例的精简版本。
Charles R

我的评论仍然存在-CherryPy不会__init__使用content参数调用类方法(并且不会在您提供的链接中声明)。在他们拥有的详细示例中,用户提供了调用代码__init__并提供了参数,我们在这里没有看到它们,因此我不知道当您的# this works注释相关时对象处于什么状态。
尼克·巴斯汀

1
您是否要查看创建实例的行?
Charles R

是的,我正在尝试启动您的示例以对其进行测试,但是我不确定您如何实例化它。
尼克·巴斯汀

代码已更改。我现在创建它时没有多余的参数。cherrypy.quickstart(Root(), '/', conf)
查尔斯R

Answers:


1050

从Requests 2.4.2及更高版本开始,您可以在调用中使用'json'参数,从而使其更简单。

>>> import requests
>>> r = requests.post('http://httpbin.org/post', json={"key": "value"})
>>> r.status_code
200
>>> r.json()
{'args': {},
 'data': '{"key": "value"}',
 'files': {},
 'form': {},
 'headers': {'Accept': '*/*',
             'Accept-Encoding': 'gzip, deflate',
             'Connection': 'close',
             'Content-Length': '16',
             'Content-Type': 'application/json',
             'Host': 'httpbin.org',
             'User-Agent': 'python-requests/2.4.3 CPython/3.4.0',
             'X-Request-Id': 'xx-xx-xx'},
 'json': {'key': 'value'},
 'origin': 'x.x.x.x',
 'url': 'http://httpbin.org/post'}

编辑:此功能已添加到官方文档中。您可以在这里查看:请求文档


114
我不敢相信我浪费了多少时间才绊倒你的答案。该请求的文档需要升级,有一个在绝对没有json参数。我不得不进入Github上之前,我看到它的任何提及:github.com/kennethreitz/requests/blob/...
IAmKale

1
将此设置为可接受的答案,因为从2.4.2开始,这更加惯用了。请记住,对于疯狂的unicode,这可能行不通。
Charles R

我和@IAmKale穿着同一双鞋。这减轻了我使用AWS的API网关时遇到的头痛。默认情况下,它需要JSON格式的POST数据。
jstudios

1
像傻瓜一样,我试图将data参数与application / json一起使用,其内容类型为:(
非法操作者,

我看到了一个示例,该示例使用dict对象并在发送之前执行json.dumps(object)。不要这样做...会弄乱您的JSON。上面是完美的..您可以将其传递给python对象,然后变成完美的json。
MydKnight

376

原来我缺少标题信息。以下作品:

url = "http://localhost:8080"
data = {'sender': 'Alice', 'receiver': 'Bob', 'message': 'We did it!'}
headers = {'Content-type': 'application/json', 'Accept': 'text/plain'}
r = requests.post(url, data=json.dumps(data), headers=headers)

好的收获-我看到您的加入application/jsonGET并以某种方式错过了您未按要求提供的信息。您可能还需要确保从中返回内容,POST否则可能会收到500
尼克·巴斯汀

似乎没有必要。当我打印时r,我得到了<Response [200]>
Charles R

如何在服务器端检索此json?
VaidAbhishek

r = request.get (' localhost:8080')c = r.content结果= simplejson.loads(c)
查尔斯·R

1
json.dumps这里使用之前,请先抬起头。该data参数requests适用于字典。无需转换为字符串。
Advait S '18年

71

从请求2.4.2(https://pypi.python.org/pypi/requests)开始,支持“ json”参数。无需指定“ Content-Type”。因此,较短的版本:

requests.post('http://httpbin.org/post', json={'test': 'cheers'})

29

更好的方法是:

url = "http://xxx.xxxx.xx"

datas = {"cardno":"6248889874650987","systemIdentify":"s08","sourceChannel": 12}

headers = {'Content-type': 'application/json'}

rsp = requests.post(url, json=datas, headers=headers)

18
Content-type: application/json是多余的,因为json=已经暗示了这一点。
Moshe

1
@Moshe完全同意,但是要设置较新版本的Elasticsearch服务器,需要设置 Content-type
devesh

@Moshe,如果内容类型为,该怎么办text/html; charset=UTF-8。那上面行不通吗?
阿努

2
更好的方法是 ” 正确答案三年后不要发布 错误答案。-1
CONvid19 '19

3

与python 3.5+完美搭配

客户:

import requests
data = {'sender':   'Alice',
    'receiver': 'Bob',
    'message':  'We did it!'}
r = requests.post("http://localhost:8080", json={'json_payload': data})

服务器:

class Root(object):

    def __init__(self, content):
        self.content = content
        print self.content  # this works

    exposed = True

    def GET(self):
        cherrypy.response.headers['Content-Type'] = 'application/json'
        return simplejson.dumps(self.content)

    @cherrypy.tools.json_in()
    @cherrypy.tools.json_out()
    def POST(self):
        self.content = cherrypy.request.json
        return {'status': 'success', 'message': 'updated'}

3

应该使用(data / json / files)之间的哪个参数,它实际上取决于名为ContentType的请求标头(通常通过浏览器的开发人员工具进行检查),

当Content-Type为application / x-www-form-urlencoded时,代码应为:

requests.post(url, data=jsonObj)

当Content-Type为application / json时,您的代码应为以下之一:

requests.post(url, json=jsonObj)
requests.post(url, data=jsonstr, headers={"Content-Type":"application/json"})

当Content-Type为multipart / form-data时,它用于上传文件,因此您的代码应为:

requests.post(url, files=xxxx)

耶稣基督,谢谢你。刚才我在梳头。
Vahagn Tumanyan

很高兴可以为您提供帮助
:)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.