I\'m trying to build a simple API using Flask, in which I now want to read some POSTed JSON. I do the POST with the Postman Chrome extension, and the JSON I POST is simply <
Assuming that you have posted valid JSON,
@app.route('/api/add_message/', methods=['GET', 'POST']) def add_message(uuid): content = request.json print content['uuid'] # Return data as JSON return jsonify(content)