我正在尝试使用Firebase发送通知。
我已经阅读了这里的文档:https://firebase.google.com/docs/cloud-messaging/js/device-group?authuser=3#managing-device-groups-on-the-app-server,but 我得到了错误的请求响应。
我的请求HTTP GET在这里获取notification_key:
{
method : 'GET',
uri : https://android.googleapis.com/gcm/notification?notification_key_name=<notification_keyname>,
json : 'true',
headers : {
Authorization : key=<API_KEY>,
'Content-Type' : 'application/json',
project_id : senderId,
},
}
这个要求有什么问题?
{
method : 'GET',
uri : https://android.googleapis.com/gcm/notification?notification_key_name=<notification_keyname>,
json : 'true',
headers : {
Authorization : key=<API_KEY>,
'Content-Type' : 'application/json',
project_id : senderId,
},
}
我可以看到两个不必要的逗号(,
(:
project_id : senderId,
},