Firebase通知团结



我正在为我的Unity项目使用firebase消息传递。我在Firebase Unity参考文献中看到了通知的文档。https://firebase.google.com/docs/reference/unity/class/firebase/messaging/firebase-notification

我是新来的团结,如何将firebase通知添加到项目中,因此收到消息时会推动通知。

我发现答案是将notification JSON添加到POST中,因此Firebase将在接收到消息时推动通知。

{
"data": {
    "title": "This is my first unity project"
},
"to": "<tokenid>",
"notification": {
    "title": "Your Title",
    "text": "Your Text"
  }
}

相关内容

  • 没有找到相关文章

最新更新