我在应用程序中创建了一个通知通道。
我对此频道拥有“通知”权限
我想在本地向该频道发送通知
以下是在后台从Firebase接收通知的功能
消息到达后,它将在本地发送通知
如何使其显示在我的频道上。因此,我希望它会出现在锁定屏幕上,并且会有振动和声音
messaging().setBackgroundMessageHandler(async remoteMessage => {
console.log('Message handled in the background!', JSON.stringify(remoteMessage));
PushNotification.localNotification({
title: "My Notification Title",
message: "My Notification Message",
playSound: true,
soundName: 'default',
visibility: "public",
importance: "max",
vibrate: true,
priority: "max",
tag: 'PIKS',
group: "PIKS",
});
})
通常,我如何向创建的频道发送通知?