我想在我的反应原生项目中使用 react-native-fcm,当我想使用参数中的令牌向我当前的设备(用于测试(发送推送通知时,我遇到了问题。
我已经测试了来自 react-native-fcm 的示例应用程序,并且本地通知工作正常,我尝试使用令牌发送,但我不知道为什么,我的设备上什么也没收到。
这是我的代码
render() {
FCM.getFCMToken().then(token => { // token android
firebaseClient.sendNotificationWithData(token)
});
//this.showLocalNotification()
return (
<Provider store={store}>
<AppNavigator />
</Provider>
);
}
我已经导入了FirebaseClient和PushController
在控制台上,我有成功响应,但没有收到通知。
您是否检查了权限?FCM.requestPermissions();
另外,我遇到了一个问题,我不得不向有效载荷添加"content_available": true,
。