我正在尝试以烧瓶发送发布请求。
我想以Content-Type: application/json
设置为标头发送JSON对象。
我正在使用请求模块进行以下操作:
json_fcm_data = {"data":[{'key':app.config['FCM_APP_TOKEN']}], "notification":[{'title':'Wyslalem cos z serwera', 'body':'Me'}], "to":User.query.filter_by(id=2).first().fcm_token}
json_string = json.dumps(json_fcm_data)
print json_string
res = requests.post('https://fcm.googleapis.com/fcm/send', json=json_string)
但这给了我:
typeError:request((有一个意外的关键字参数'json'
关于如何解决此问题的任何建议?
首先修复错误:
您需要更改此信息:
res = requests.post('https://fcm.googleapis.com/fcm/send', json=json_string)
:
res = requests.post('https://fcm.googleapis.com/fcm/send', data=json_string)
您遇到的错误声明requests.post
不能接受名为json
的参数,但它接受一个名为data
的关键字参数,该参数可以是JSON格式。
然后添加标题:
如果要使用requests
模块发送自定义标题,则可以按以下方式执行以下操作:
headers = {'your_header_title': 'your_header'}
# In you case: headers = {'content-type': 'application/json'}
r = requests.post("your_url", headers=headers, data=your_data)
总结所有内容:
您需要稍微修复JSON格式。完整的解决方案将是:
json_data = {
"data":{
'key': app.config['FCM_APP_TOKEN']
},
"notification":{
'title': 'Wyslalem cos z serwera',
'body': 'Me'
},
"to": User.query.filter_by(id=2).first().fcm_token
}
headers = {'content-type': 'application/json'}
r = requests.post(
'https://fcm.googleapis.com/fcm/send', headers=headers, data=json.dumps(json_data)
)