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())
何か案は?
__init__
してクラスメソッドを呼び出しませんcontent
(そして、指定したリンクで要求しません)。彼らが持っている詳細な例では、ユーザーは呼び出し__init__
て引数を提供するコードを提供しますが、ここでは見ていませんので、# this works
コメントが関連しているときにオブジェクトの状態がわかりません。
cherrypy.quickstart(Root(), '/', conf)
。