我正在尝试使用firebase将推送通知发送到我的Android设备,我使用post参数调用firebase api,当我调用api时它给了我200ok,但在我的设备中我没有收到任何通知。我尝试使用相同的设备令牌使用firebase控制台网站,在这里我能够发送它并将其发送到我的设备中,下面是我对节点js的调用
request({
url: 'https://fcm.googleapis.com/fcm/send',
method: 'POST',
headers: {'Content-Type' :' application/json','Authorization': 'key=AA'},
body: JSON.stringify({
"to" : deviceId,
"priority": "high",
"notification": {
"message": message,
"body": "ipl matches are there",
"title": "Portugal vs. Denmark",
"text": "5 to 1"
},}),
任何人都可以告诉我这里有什么问题。 感谢
答案 0 :(得分:0)
我通过传递到身体下方解决了Android设备:
{
"notification": {
"message": message,
"title": "teri ma ki",
"text": "this is for testing"
},
"to" : deviceId
}
让其他参数出现问题。