我正在尝试将通知从 firebase 控制台发送到我的 react-native 应用程序
据我所知,我在这里遵循了糟糕的文档:https ://invertase.io/oss/react-native-firebase/v6/messaging/quick-start
我安装了@react-native-firebase/app 和 /messaging,这是我在组件中的代码:
componentDidMount() {
this.reqNotifications()
this.checkNotificationPermission()
}
reqNotifications() {
requestNotifications(['alert', 'badge', 'sound']).then(({status, settings}) => {
console.log('NOTIFICATION STATUS' + status)
});
}
async checkNotificationPermission() {
const enabled = await messaging().hasPermission();
if (enabled) {
console.log('APPROVED');
await messaging().registerForRemoteNotifications()
messaging().getToken().then(token => console.log('token: >> ' + token))
} else {
console.log('NOT APPROVED');
}
}
- 我正在通过 react-native-permissions 请求许可,并且许可请求正在 运行。
- 我的 Apple APN在 Apple 和 Firebase 控制台上正常
- 我通过代码上的 getToken() 方法成功获取了我的 令牌。
但我无法从 firebase 向设备发送任何内容;前台和后台都没有发生任何事情。我尝试了令牌测试,也尝试了正常但没有,没有任何反应。
我将此代码添加到componentDidMount:
messaging().onMessage(async remoteMessage => {
console.log('FCM Message Data:', remoteMessage.data);
});
据我了解,这订阅了云消息,当我从 firebase-console 发送一些云消息通知时,我应该得到控制台输出;但什么也没发生。
我不知道我错过了什么,但我认为这个包有一个很大的更新,大部分文档都是针对以前版本的,我真的卡在这里谢谢你的帮助