如何在main.js文件中订阅特定主题vue firebase cloudmessaging

时间:2019-07-27 12:19:29

标签: firebase vue.js firebase-cloud-messaging

我已经在vue项目中配​​置了FCM。我想向所有注册的设备发送通知。

我知道我必须在FCM中使用主题。如何在FCM中创建主题并将vue应用程序注册到特定主题?

在邮递员中,我这样发送请求:

{
 "to" : "eg-2A06p4gM:APA91b...(userToken that generated in vue application)",
 "notification" : {
 "body" : "body",
 "title" : "title"
 "content_available" : true,
 "priority" : "high",
 },
 "data" : {
 "body" : "body",
 "title" : "title"
 "content_available" : true,
 "priority" : "high",
 } 
}

并带有正确的标题。

我如何订阅vue应用程序的主题并将通知发送到/ topics / topic_name? 谢谢。

0 个答案:

没有答案