Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'400 Bad Request' when post json in Flask

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?

like image 654
Xiaokun Avatar asked Apr 11 '15 10:04

Xiaokun


2 Answers

Try this

-d '{"product_id":"111", "customer_name":"xiaokun", "customer_phone":"1231"}'

Full syntax

curl -X POST -H "application/json" -d '{"key":"val"}' URL
like image 108
itzMEonTV Avatar answered Oct 22 '22 20:10

itzMEonTV


If you are a windows system, you need to modify the json format.

Examples: '{"token":"asdfas"}' replaced by "{\"Hello\":\"Karl\"}"

like image 28
holdlg Avatar answered Oct 22 '22 20:10

holdlg