My application is very simple,
#@csrt.exempt
@app.route('/preorders/json', methods=['POST'])
def json_create_preorders():
    #print request
    print 'test'
    #print request.json
    print request.mimetype
    print request.json
    print 'aaa',request.get_json(force=True)
    print request.json['product_id']
    if not request.json or not 'product_id' in request.json or not 'customer_name' in request.json or not 'customer_phone' in request.json:
        abort(400)
    preorder=Preorder(request.json['customer_name'],request.json['customer_phone'],request.json['product_id'])
    db.session.add(preorder)
    db.session.commit()
    return jsonify({'status':'success'}), 201
POST json with curl,
curl -i -H "Content-Type: application/json" -X POST -d '{"product_id":"111", "customer_name"="xiaokun", "customer_phone"="1231"}' http://xxxx/preorders/json
Check from server, 'test' and 'request.mimetype' are printed. Then is a 400 response. Anyone can help to have a look?
Try this
-d '{"product_id":"111", "customer_name":"xiaokun", "customer_phone":"1231"}'
Full syntax
curl -X POST -H "application/json" -d '{"key":"val"}' URL
                        If you are a windows system, you need to modify the json format.
Examples:
'{"token":"asdfas"}' replaced by  "{\"Hello\":\"Karl\"}"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With