• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - ionic 3 : Unable to receive push notification on foreground in IOS

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:19:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在开发与购物相关的移动应用程序,并使用 firebase FCM 在其中实现推送通知。在 android 上一切正常,我通过代码很好地收到了通知:

app.component.ts

platform.ready().then(() => {
   this.fcm.onNotification().subscribe(data => {
      console.log(data);
   });
});

它在 android 中成功显示了通知数据,但是在 IOS 中,当我点击我的 php 代码进行通知时,它在我的应用程序关闭时显示通知,但当我已经打开应用程序时它没有执行 this.fcm.onNotification() 函数。我只是调试了这个问题并注意到了这一点,在我的 xcode 控制台中显示:

2018-12-14 18:08:34.299048+0530 BeMeals[1351:322531] 
Warning: Application delegate received call to -application:didReceiveRemoteNotification:fetchCompletionHandler: 
but the completion handler was never called.

php 文件

$url = 'https://fcm.googleapis.com/fcm/send';
    $msg = array
    (
     'title'  => 'This is title', // type of notification
     'tickerText' => 'This is message', // message
     'tab' => 'This is tab', // screen to open based on subtitle
     'screen' => "request_list",
     'message'  => 'hey',
     'body' => 'test',
     'vibrate' => 1,
     'sound'  => 1,
     'click_action'=>'FCM_PLUGIN_ACTIVITY'
    );

    $fields = array
    (
     'registration_ids'  => ['my device token'],
     'notification'   => $msg,
     'data' => [
        'test'=>123
     ],
     'priority' => 'high',
     'content_available' => true
    );

    $headers = array
    (
     'Authorization: key=' . self:API_ACCESS_KEY,
     'Content-Type: application/json'
    );

    $result = self::useCurl($url, $headers, $fields);

谁能告诉我为什么会这样?出了什么问题?



Best Answer-推荐答案


在google上的一些RND为自己找到解决方案后,您需要将FCM插件版本降级到1.1.5

cordova-plugin-fcm: "^1.1.5"

将此添加到您的 package.json 文件中。 希望这对你也有用。

关于ios - ionic 3 : Unable to receive push notification on foreground in IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53780063/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap