iOS 中的 FCM 通知在收到时不播放声音

FCM Notification in iOS doesn#39;t play sound when received(iOS 中的 FCM 通知在收到时不播放声音)
本文介绍了iOS 中的 FCM 通知在收到时不播放声音的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的 iOS 应用程序中使用 Firebase 推送通知.虽然我可以通过发送以下有效负载来发送通知,但收到时它不会播放声音.

I am using Firebase push notifications in my iOS Application. Although I am able to send the notification by sending below payload, it doesn't play a sound when received.

{
    "to": "myToken",
    "notification": {
        "body": "test",
        "title": "test"
    },
    "priority": "high"
    "sound": "default"
}

如果我从控制台发送测试消息,它运行良好并播放通知声音.
注意:

If I send the test message from console, it works well and plays notification sound.
Note:

  1. 我的授权码是正确的
  2. 我正在向 https://fcm.googleapis.com/fcm/send
  3. 发送 http 请求
  4. 我在 iPhone 4、iPhone 6 和 iPhone 6S 上测试过,都收到了无声通知

推荐答案

你的 JSON "sound" : "default" 应该在 "notification" 键内JSON 的根.这个 JSON 应该可以工作.

your JSON "sound" : "default" should be inside the "notification" key not in the root of the JSON. This JSON should work.

{
    "to": "myToken",
    "notification": {
         "body": "test",
         "title": "test",
         "sound": "default"
    },
    "priority": "high"
}

这篇关于iOS 中的 FCM 通知在收到时不播放声音的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)