채널 푸시알림을 (FCM 푸시알림) 사용자 별로 활성화 및 비활성화 처리 할 수 있습니다.
// enable
await client.enableChannelPushNotification({channelId:'my_channel_id'})
// disable
await client.disableChannelPushNotification({channelId:'my_channel_id'})
채널 푸시알림 (FCM 푸시알림) 사운드를 사용자 별로 확인 및 변경할 수 있습니다.
// get channel push notification settings
const resp = await client.getChannelPushNotificationSettings({channelId: 'someChannelId'});
/*
{
"pushNotificationSoundAos": "Default",
"pushNotificationSoundIos": "chime"
}
*/
// update channel push notification sound settings
await client.updateChannelPushNotificationSettings({
'channelId': 'someChannelId',
'aosSound': 'Default',
'iosSound': 'chime',
});
// update channel push notification AOS sound only
await client.updateChannelPushNotificationSettings({
'channelId': 'someChannelId',
'aosSound': 'Default'
});
// update channel push notification iOS sound only
await client.updateChannelPushNotificationSettings({
'channelId': 'someChannelId',
'iosSound': 'chime'
});