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

How to specify Android notification channel for FCM push messages in Android 8

我们的应用现在有 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 通知通道,这不是我们想要的(我们有其他通知通道和 "Miscellaneous" 在该列表中听起来很混乱)。

正如FCM documentation所说,有一种方法可以为 FCM 消息指定默认通知渠道:

(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.

但是没有显示代码示例(仅显示图标和颜色的示例)。所以我只是通过在 github:

上搜索 Firebase Cloud Messaging Quickstart 中的样本找到了
<meta-data
    android:name="com.google.firebase.messaging.default_notification_channel"
    android:value="@string/default_notification_channel_id"/>

但它不起作用 - FCM 通知仍然出现在 "Miscellaneous" 频道中。我在日志中看到:

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

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

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

中有这样一个选项

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

查看文档: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.

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

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

FCM 已迁移到 HTTP v1 API:

https://fcm.googleapis.com/v1/projects/{{projectId}}/messages:send

android_channel_id 会造成错误的请求:

"@type": "type.googleapis.com/google.rpc.BadRequest",
"fieldViolations": [
  {
    "field": "message.notification",
    "description": "Invalid JSON payload received. Unknown name \"android_channel_id\" at 'message.notification': Cannot find field."
  }

正确的负载应该是:

{
    "message": {
        "token": "{{deviceToken}}",
        "notification": {
            "body": "This is an FCM notification message hello 23",
            "title": "FCM Message",
            "image": "https://lumiere-a.akamaihd.net/v1/images/au_moviesshowcase_mulan_poster_r_2_54011055.jpeg?region=0,0,960,1420"
        },
        "android": {
          "notification": {
            "channel_id": "channel_id_1"
          }
        },
        "data": {
            "key1": "42",
            "key2": "sent by 21"
        }
    }
}

https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#resource:-message

取决于此资源:https://firebase.google.com/docs/cloud-messaging/http-server-ref

这里的有效载荷看起来像:

{
   "to":"$device_token"
   "notification":{
      "title":"Title",
      "body":"Here Body",
      "android_channel_id":"$channel_id", // For Android >= 8
      "channel_id":"$channel_id", // For Android Version < 8
      "image": "https://xxxxx.com/xxxxx.jpeg"
   },
   "data":{},
   "priority":"normal"
}