对于
application/jsonPOST,只需访问
request.json:
@route ('/tagTweets', method='POST')def tagTweets(): response.content_type = 'application/json' sender = request.json['sender'] receiver = request.json['receiver'] message = request.json['message']


