dthdlv9777 2017-02-19 20:25
浏览 224

错误400 - 来自PHP请求的Flask request.get_data()的错误请求

I'm doing an internal API across my servers. I want to transfer some JSON strings from PHP to Python.

On Python, I have this code:

from flask import request
from flask import jsonify
...

@app.route('/database/<string:token>', methods=['POST', 'GET'])
def sync(token):
    if token not in VALID_TOKENS:
        ...

    json = request.get_json(force=True)
    ...

...
if __name__ == "__main__":
    app.run(host='0.0.0.0', debug=False, port=6000)

On PHP-side, I have:

$payload = $datafromdatabase; 
$payload = json_encode($payload); 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
curl_setopt($ch, CURLOPT_URL, $endpoint); 
curl_setopt($ch, CURLOPT_POST, true); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
    'Content-Type: application/json',                                                                                
    'Content-Length: ' . strlen($payload))                                                                       
);
$result = curl_exec($ch); 

But Flask returns me, at every request:

127.0.0.1 - - [19/Feb/2017 20:08:00] "POST /database/token HTTP/1.1" 400 -

P.S: On Python, request.data and request.args are both None.

P.P.S.: Using requests.post(url, json=data) in Python works.

  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 delta降尺度计算的一些细节,有偿
    • ¥15 Arduino红外遥控代码有问题
    • ¥15 数值计算离散正交多项式
    • ¥30 数值计算均差系数编程
    • ¥15 redis-full-check比较 两个集群的数据出错
    • ¥15 Matlab编程问题
    • ¥15 训练的多模态特征融合模型准确度很低怎么办
    • ¥15 kylin启动报错log4j类冲突
    • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
    • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序