904

クライアントからサーバーに JSON を POST する必要があります。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())

何か案は?

4

9 に答える 9

460

ヘッダー情報が欠落していたことがわかりました。以下の作品:

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)
于 2012-03-31T03:26:53.223 に答える
85

requests 2.4.2 ( https://pypi.python.org/pypi/requests ) から、「json」パラメーターがサポートされます。「Content-Type」を指定する必要はありません。したがって、短いバージョン:

requests.post('http://httpbin.org/post', json={'test': 'cheers'})
于 2014-12-10T10:08:59.843 に答える