使用iPhone时我没有获得令牌。我在使用模拟器时得到令牌。 我使用nativescript-firebase-plugin,并在main.js中执行firebase.init函数。
我已经尝试了所有关于此错误的发现,或者我什至不知道这是否是常见错误。完整的初始化看起来像这样
firebase.init({
showNotifications: true,
showNotificationsWhenInForeground: true,
onPushTokenReceivedCallback: (token) => {
console.log(`onPushTokenReceivedCallback: ${token}`);
appSettings.setString('firebasemessagekeytoken', token);
},
onMessageReceivedCallback: (message) => {
console.log(`onPushTokenReceivedCallback: ${message.title}`);
}
})
.then(() => {
console.log('[Firebase] Initialized');
})
.catch(error => {
console.log(`error: ${error}`);
});```