原生脚本 |火力基本通知不起作用



我在 Nativescript 应用程序中使用 firebase 时遇到问题,当我使用 android 时,它工作得很好,但不适用于 IOS。 问题出在消息发送上。 我在客户端使用推送插件

这是IOS客户端使用推送插件的寄存器部分

const iosSettings:any = {
badge: true,
sound: true,
alert: true,
interactiveSettings: {
actions: [{
identifier: 'READ_IDENTIFIER',
title: 'Read',
activationMode: "foreground",
destructive: false,
authenticationRequired: true
}, {
identifier: 'CANCEL_IDENTIFIER',
title: 'Cancel',
activationMode: "foreground",
destructive: true,
authenticationRequired: true
}],
categories: [{
identifier: 'READ_CATEGORY',
actionsForDefaultContext: ['READ_IDENTIFIER', 'CANCEL_IDENTIFIER'],
actionsForMinimalContext: ['READ_IDENTIFIER', 'CANCEL_IDENTIFIER']
}]
},
notificationCallbackIOS: (message: any) => {
alert(JSON.stringify(message));
}
};

pushPlugin.register(iosSettings, (token: string) => {
// update the token in the server
alert("Device registered. Access token: " + token);
});
}
}, (errorMessage: any) => {
alert("Device NOT registered! " + JSON.stringify(errorMessage));
});

这就是我接收推送通知令牌的方式, 当我使用推送器应用程序时获得令牌后,一切正常,我在 IOS 设备中收到通知 但问题是当IM尝试从服务器发送通知时!

我收到此错误:

提供的注册令牌无效。确保它与 客户端应用通过注册 FCM 获得的注册令牌。

我的服务器中的节点代码

var payload = {
data: {
targetId:userToken,
body: "some text"
}
};
var options = {
priority: "high",
contentAvailable: true,
timeToLive: 60 * 60 * 24
};
Admin.messaging().sendToDevice(userToken, <any>payload,options)
.then((response) => {
console.log('notification arrived successfully', response.results[0]);
})
.catch((error) => {
console.log('notification failed', error);
});

iOS的注册令牌与Android不同。我遇到了你遇到的同一堵墙。您需要将https://github.com/node-apn/node-apn用于 IOS 推送通知。和安卓通知的firebase。您可以通过保存令牌在后端执行逻辑。带有一个名为type的字段,该字段ios or android您是否使用node-apn以及Android是否使用Firebase提供的sendToDevice

这就是我目前正在与我当前的 nativescript 项目一起使用的,我正在处理的涉及推送通知。希望对你有帮助,伙计。

相关内容

  • 没有找到相关文章

最新更新