无法从ios上的react-native-notifications获取设备令牌

问题描述 投票:0回答:1

我在 iOS 上有一个应用程序,无法从通知中获取设备令牌。

  • 我正在设备上运行
  • 我在日志中没有看到任何相关消息
  • 我看到要求通知的提示

相关代码如下:

  useEffect(() => {
    Notifications.registerRemoteNotifications();
  
    Notifications.events().registerRemoteNotificationsRegistered(event => {
      console.log('DEVICE TOKEN');
      console.log(event.deviceToken);
      alert('DEVICE TOKEN');
      alert(event.deviceToken);
    });
  });
javascript ios reactjs react-native react-native-notifications
1个回答
0
投票

我还没有研究过这个问题,但这里有一个建议:使用 Expo NotificationsReact Native Firebase Messaging 会更稳定。如果您没有任何特定要求,可以考虑使用这些包。

© www.soinside.com 2019 - 2024. All rights reserved.