Firebase云消息通过电话发送通知

时间:2017-08-10 11:30:49

标签: android firebase firebase-cloud-messaging

我想了解如何使用Firebase云消息传递发送和接收Firebase推送通知enter image description here

我想知道如何使用android studio中的代码手动发送通知,以便我可以从任何手机发送。

1 个答案:

答案 0 :(得分:1)

您使用FCM从手机发送消息。您需要使用要发送的有效负载制作POSThttps://fcm.googleapis.com/fcm/send api,并在Firebase控制台项目中找到服务器密钥。

作为使用to param发送给单个用户的有效负载的exameple:

{ "data": {
      "score": "5x1",
      "time": "15:10"
  },
  "to" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1..."
}

此外,to param可用于主题"to": "topics/yourTopic"

data中,您可以发送任何内容,并在Firebase的onMessageReceived()服务中收到消息。

您可以在Firebase documentation中找到更多详细信息。