我正在尝试使用 Firebase 向我的安卓设备发送推送通知,我正在使用 post 参数调用 firebase api,当我调用 api 时,它会给我 200ok,但在我的设备中我没有收到任何通知。我尝试使用Firebase控制台网站使用相同的设备令牌,在这里我可以发送它并将其发送到我的设备中,下面是我对node 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"
},}),
任何人都可以让我知道这里出了什么问题。谢谢
我通过传递下面的身体来解决安卓设备:
{
"notification": {
"message": message,
"title": "teri ma ki",
"text": "this is for testing"
},
"to" : deviceId
}
让其他参数如给出的问题。