Troubleshooting
The following describes the errors that may occur while you use the service and how to troubleshoot them.
1. When creating a channel, I get a message that reads "Unable to verify address."
2. I can’t upload my image.
3. All messages are received.
nc.bind('onMessageReceived',function(channel, message) {
// If you are subscribed to various channels, this is where you receive messages from all those channels.
// Channels to be shown to customers need to be distinguished through channel.
if(channel == current_channel) {
console.log(message);
}
});Last updated