gpt4 book ai didi

ios - 如何在不通知 ios 应用程序的情况下发送数据消息?

转载 作者:行者123 更新时间:2023-11-28 07:35:46 25 4
gpt4 key购买 nike

我在 iOS 应用中使用 Firebase 云消息传递 (FCM)。我现在正在尝试使用以下方法获取 不带通知的数据消息

application(_:didReceiveRemoteNotification:)

我可以使用 http://pushtry.com/ 发送数据消息吗? ?我已尝试从此站点发送数据消息,但没有任何反应,而通知工作正常。

数据消息的 JSON

{
"message":{
"token":"mytoken comes here",
"data":{
"Nick" : "Mario",
"body" : "great match!",
"Room" : "PortugalVSDenmark"
}
}
}

是否有其他网站可以测试数据消息而不通知

最佳答案

您可以通过将 content_available 作为 true 添加到您的有效负载来使用 FCM 发送静默通知。

{
"message": {
"token": "mytoken comes here",
"content_available": true,
"priority": "high",
"data": {
"Nick": "Mario",
"body": "great match!",
"Room": "PortugalVSDenmark"
}
}
}

关于ios - 如何在不通知 ios 应用程序的情况下发送数据消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53204560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com