我在使用Android Studio开发的Android应用程序中使用Firebase。我可以从Firebase控制台发送Firebase通知消息,并在应用中成功接收消息。
现在,我需要将数据有效负载消息发送到我的Android应用。由于无法使用Firebase控制台进行发送,因此我尝试使用高级REST客户端实现相同功能。
但是当我尝试发送时,我在Advance REST Client中收到以下错误:
The requested URL can't be reached
The service might be temporarily down or it may have moved permanently to a new web address.
Search Google for chrome network error 137
net::ERR_NAME_RESOLUTION_FAILED
这是我的要求:
请求网址:https://fcm.googleapis.com/fcm/send
原始标题:
Authorization: key="server-key"
Content-Type: application/json
原始有效载荷:
{
"registration_ids" : "[{"fcm-token"}]",
"data": {
"key1" : "value1",
"key2" : "value2",
"other_key" : true
}
}
我的请求中有什么问题?请帮忙。
注意:" fcm-token"和"服务器密钥"在实际请求中替换为实际值。