我有以下代码,我在其中从节点服务器发送推送通知。我的应用程序收到了通知,但没有声音或振动。
service.sendNotifications = (listTokens, textMessage) => {
let expo = new Expo();
let messages = [];
for( let token of listTokens){
if(!Expo.isExpoPushToken(token)) {
console.error(`Token ${token} is not valid`);
continue;
}
messages.push({
to: token,
sound: 'default',
body: textMessage,
android: {
channelId: 'my-channel',
},
priority: 'high',
data: {},
})
}
let chunks = expo.chunkPushNotifications(messages);
let tickets = [];
(async () => {
for(let chunk of chunks) {
try{
let ticketChunk = await expo.sendPushNotificationsAsync(chunk);
tickets.push(...ticketChunk);
} catch (error) {
console.error(error);
}
}
})();
要解决此问题,有人告诉我使用频道。我已经在应用程序中进行了配置,当我从https://expo.io/dashboard/notifications发送测试通知时,一切都按预期进行。
如何在服务器端配置channelId?