Push Notification
Enable / Disable Push Notification
// 사용자 Push Notification 활성화
TalkPlusApi.EnablePushNotification(() => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});
// 사용자 Push Notification 비활성화
TalkPlusApi.DisablePushNotification(() => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});// 채널 Push Notification 활성화
TalkPlusApi.EnableChannelPushNotification(channel, (TPChannel channel) => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});
// 채널 Push Notification 비활성화
TalkPlusApi.DisableChannelPushNotification(channel, (TPChannel channel) => {
// SUCCESS
}, (int statusCode, Exception e) => {
// FAILURE
});Push Notification
Last updated
Was this helpful?