請大家幫忙。
我對火力的要求是這樣的:通過PHP Curl向firebase發送notofication,獲得成功響應,但沒有通知交付
curl https://fcm.googleapis.com/fcm/send -X POST \
--header "Authorization: key=my-api-key" \
--Header "Content-Type: application/json" \
-d '
{
"to": "firebase-instance-id"
"notification":{
"title":"New Notification!",
"body":"Test"
},
"priority":10
}'
而且我得到的迴應:
{
"multicast_id":7748668110190879774,
"success":1,
"failure":0,
"canonical_ids":0,
"results":[{
"message_id":"0:1505463398077072%3f95c2ka3f95c2ca"
}]
}
但我看到在火力地堡控制檯列表無添加的通知,也沒有電話。有什麼建議麼?也許有一些設置我應該改變,以便可以通過curl從我的服務器發送通知?提前致謝。