离子FCM推送通知可观察到的通知不会发出



我在离子应用程序中进行以下操作:

  1. 登录用户时,请订阅其用户ID主题
  2. 推送通知到达时, console.log某物。

    this.authState.subscribe((state) => {
        if (state) {
            this.fcmPush.subscribeToTopic(state.uid);
            this.fcmPush.onNotification().subscribe(notification => {
                if (notification.wasTapped) {
                  console.log('Received in background', notification);
                } else {
                  console.log('Received in foreground', notification);
                }
            });
        }
    });
    

来源:https://github.com/amitmy/ionic-starter-firebase/blob/master/src/src/app/app/app/app.component.ts#l118

向我自己的主题发送通知到达(几分钟后),但我从不在应用程序外部和应用程序内部看到任何内容。

我在做什么错?

从firebase消息发送通知不起作用。但是,使用SDK我必须添加:

click_action: "FCM_PLUGIN_ACTIVITY",

是用法指南中的,但我错过了

相关内容

  • 没有找到相关文章

最新更新