Firebase消息传递显示了发送的0条消息



我正在使用iOS React Angand应用程序测试我对Firebase消息的实现,并通过Firebase仪表板发送通知 - 但它显示了发送的0条消息。我正在使用此库及其示例代码:

https://github.com/evollu/reaect-native-fcm

我尝试将Firebase消息令牌直接放入我的单个测试设备中,但也发送了0个消息。

我该如何调试Firebase中发生了什么?我可以在某处看到注册设备的列表吗?我已经在Apple和Firebase上配置了APN证书,因此不确定下一步要去哪里。

我在我的应用程序中获得了一个firebase令牌,所以不确定我还有其他需要做的事情。

class App extends Component {
    componentDidMount() {
        FCM.requestPermissions(); // for iOS
        FCM.getFCMToken().then(token => {
            saveTokenToMyProfile(token);
        });
        this.notificationListener = FCM.on(FCMEvent.Notification, async (notif) => {
            // there are two parts of notif. notif.notification contains the notification payload, notif.data contains data payload
            if(notif.opened_from_tray){
              //app is open/resumed because user clicked banner
            }
        this.refreshTokenListener = FCM.on(FCMEvent.RefreshToken, (token) => {
            console.log(token)
            // fcm token may not be available on first load, catch it here
        });
    }

firebase通知正在计算已发送计数时经历延迟。
这不应影响实际消息Delievery

https://status.firebase.google.com/

我们正在遇到延迟在Firebase通知中计算已发送的延迟 从2017-02-28星期二开始的计数,美国太平洋/太平洋。

当前数据表明所有用户都受此问题的影响。

对于受影响的每个人,我们对您的不便表示歉意 可能正在经历。我们将在美国/太平洋地区上午02:25之前提供更新 带有当前细节。

相关内容

  • 没有找到相关文章

最新更新