gpt4 book ai didi

android - 类似android的iOS应用程序未运行或关闭状态时如何处理数据类型fcm通知?

转载 作者:可可西里 更新时间:2023-11-01 03:33:25 24 4
gpt4 key购买 nike

在android中,我们可以在应用未运行或关闭状态时接收数据类型的通知。并且可以用代码解析和显示通知,可以做任何事情,比如更新旧消息等。

public class FCMListenerService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d("onMessageReceived for FCM", remoteMessage.getData().toString());
}
}

我怎样才能在 ios 中做类似的事情?

当应用程序处于后台或前台时,我能够获取通知的数据类型。所以我可以做任何我想做的事。但是我无法调试应用程序未运行时如何处理数据类型通知?有人可以帮助我吗?

下面是我要发送的负载。

{
"to": "..............",
"data": {
"body": "data",
"title": "Portugal vs. Denmark",
"icon": "myicon"
},
"content_available": true
}

最佳答案

您不能将自定义标签放在 aps 标签中。以下是文档中关于它的内容:

Providers can specify custom payload values outside the Apple-reserved aps namespace. Custom values must use the JSON structured and primitive types: dictionary (object), array, string, number, and Boolean. So in your case you should do something like:

{
"aps" : {
"alert" : {
"title" : "Game Request",
"body" : "Bob wants to play poker",
"action-loc-key" : "PLAY"
},
"badge" : 5
},
"acme1" : "bar",
"acme2" : [ "bang", "whiz" ]
}

因此,您可以通过在主 JSON 中查找它的键来读取您的自定义负载,而不是在“aps”中:

更多信息:

https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CreatingtheNotificationPayload.html

关于android - 类似android的iOS应用程序未运行或关闭状态时如何处理数据类型fcm通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45138578/

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