PushNotification的配置方法未调用或未获取令牌

时间:2019-05-28 10:46:56

标签: firebase react-native react-native-push-notification

react-native-push-notification(PushNotification)的配置方法永远不会调用任何人知道我错过了什么? 我正在使用Firebase为推送通知配置云消息传递。

PushNotification.configure({
      onRegister: function (token) {
        console.log('TOKEN:', token);
      },
      onNotification: function (notification) {
        console.log("NOTIFICATION:", notification);
      },
      senderId:"12323123232",
      permissions: {
        alert: true,
        badge: true,
        sound: true
      },
      popInitialNotification: true,
      requestPermissions: true
    });

它没有注册。

0 个答案:

没有答案