我是Firebase的新手,本机是react-native,因此对这个问题感到抱歉,但我想知道
在带有Firebase的推送通知中,onTokenRefresh和getToken有什么区别?
为什么不只与getToken一起使用?
为什么在此代码中始终会出现onTokenRefresh,我认为只有在令牌实际更改后,它才会运行此功能...
componentDidMount() {
kittensApp.onReady().then(app => {
app.messaging().getToken()
.then(fcmToken => {
if (fcmToken) {
console.log('fcmtokenApp', fcmToken)
} else {
console.log('here 2')
}
})
app.messaging().onTokenRefresh(token => {
console.log('refreshtoken', token)
})
})}
谢谢您的帮助!
答案 0 :(得分:0)
console.log
希望这会有所帮助。