gpt4 book ai didi

android - 如何在 Android 8 中为 FCM 推送消息指定 Android 通知 channel

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:43:32 30 4
gpt4 key购买 nike

我们的应用现在有 targetSdkVersion 26 (Android 8) 并且该应用使用 FCM 推送通知。

作为FCM documentation规定我将 FCM 客户端库更新到版本 11.2.0:

dependencies {
compile 'com.google.firebase:firebase-messaging:11.2.0'
}

通过此 FCM 客户端库更新,FCM 通知开始出现在 Android 设备上。很好,但是当应用程序在后台时,它是处理 FCM 消息的系统,因此它使用名为“Miscellaneous”的默认 Android 通知 channel ,这不是我们想要的(我们有其他通知 channel ,“Miscellaneous”在该列表中听起来很困惑).

作为FCM documentation说有一种方法可以为 FCM 消息指定默认通知 channel :

(Optional) Within the application component, metadata elements to set a default icon, color and notification channel (new in Android O) for notifications. Android uses these values whenever incoming messages do not explicitly set icon, color or notification_channel.

但是没有显示代码示例(仅显示图标和颜色的示例)。所以我只是通过谷歌搜索 Firebase Cloud Messaging Quickstart 中的样本找到了在 github 上:

<meta-data
android:name="com.google.firebase.messaging.default_notification_channel"
android:value="@string/default_notification_channel_id"/>

但它不起作用 - FCM 通知仍然出现在“杂项” channel 中。我在日志中看到:

W/FirebaseMessaging: Missing Default Notification Channel metadata in AndroidManifest. Default value will be used.

当然,我尝试重新安装该应用程序。仍有问题。

嗯,理想情况下,应该有一些方法可以在发送消息时在后端指定通知 channel 。允许测试发送的 FCM 开发控制台现在在 UI 中有这样一个选项:

enter image description here

而且效果很好。但是,我们的后端使用 Java Amazon SNS API,我不知道该 API 是否允许在发送消息时指定 Android 通知 channel (因为这是一项新的 Android 功能,Amazon 需要时间来采用它)。因此,在 AndroidManifest.xml 中设置默认通知 channel 目前是一个有效的解决方法,但它不起作用。

最佳答案

查看文档:https://firebase.google.com/docs/cloud-messaging/http-server-ref

android_channel_id The notification's channel id (new in Android O).

The app must create a channel with this ID before any notification with this key is received.

If you don't send this key in the request, or if the channel id provided has not yet been created by your app, FCM uses the channel id specified in your app manifest.

尝试在您即将发布到 fcm 的 json 中包含 android_channel_id。我不知道为什么显性值(value)不适合你。尝试只向您的请求添加 channel ,您应该会获得与 Firebase 控制台相同的效果。

编辑:我刚刚意识到您要求的是 Amazon 客户端集成。也许你可以手动构建 json 请求(我对亚马逊服务了解不多,抱歉)。

关于android - 如何在 Android 8 中为 FCM 推送消息指定 Android 通知 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45937291/

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