我需要从客户端向服务器发布JSON。我使用Python 2.7.1和simplejson。客户端使用请求。服务器是CherryPy。我可以从服务器获取硬编码的JSON(代码未显示),但是当我尝试向服务器发布JSON时,我得到“400错误请求”。
这是我的客户端代码:
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 = contentprint 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())
有什么想法吗?