Custom message
Send custom message
channel.sendCustom({
message:'{"val1":"call", "customMsg":"wow"}'
})
1
2
3
Event that occurs when a custom message is posted in the chat room
channel.onNotifyCustom= function(event) {
console.log('onNotifyCustom', JSON.stringify(event))
};
1
2
3