无法发送Firebase"数据"从高级REST客户端到Android应用程序的消息

时间:2017-01-04 05:23:48

标签: android rest firebase firebase-cloud-messaging

我在使用Android Studio开发的Android应用程序中使用Firebase。我可以从Firebase控制台发送Firebase通知消息,并在应用中成功接收消息。

现在,我需要将数据有效负载消息发送到我的Android应用。由于无法使用Firebase控制台进行发送,因此我尝试使用高级REST客户端实现相同功能。

Screenshot of Advanced Rest Client

但是当我尝试发送时,我在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"和"服务器密钥"在实际请求中替换为实际值。

0 个答案:

没有答案