1. ホーム
  2. python

[解決済み] Python RequestsでJSONデータをPOSTする方法とは?

2022-03-22 14:55:43

質問

クライアントからサーバーにJSONをPOSTする必要があります。私はPython 2.7.1とsimplejsonを使用しています。クライアントはRequestsを使用しています。サーバーは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())

何かアイデアはありますか?

解決方法は?

Requests バージョン 2.4.2 以降では、この機能を使用するために json= パラメータ (辞書を受け取る) の代わりに data= (文字列を受け取る)を呼び出します。

>>> 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'}