'unauthorized' event handler
The example doesn't give any notification on an Unauthorised error. It would be nice to log something on the server too, but I don't see how to do this.
This commit is contained in:
parent
8ebeaba025
commit
3c30d30368
@ -46,8 +46,12 @@ block content
|
|||||||
|
|
||||||
function openChat() {
|
function openChat() {
|
||||||
var socket = io();
|
var socket = io();
|
||||||
socket.on('connect', function () {
|
socket
|
||||||
socket.on('authenticated', function () {
|
.on('connect', function (msg) {
|
||||||
|
console.log("connected");
|
||||||
|
socket.emit('authenticate', {token: userToken}); // send the jwt
|
||||||
|
})
|
||||||
|
.on('authenticated', function () {
|
||||||
//Do
|
//Do
|
||||||
$('#login').hide();
|
$('#login').hide();
|
||||||
$('#chat').show();
|
$('#chat').show();
|
||||||
@ -56,10 +60,13 @@ block content
|
|||||||
$('#m').val('');
|
$('#m').val('');
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
socket.on('chat message', function (msg) {
|
})
|
||||||
|
.on('unauthorized', function(msg){
|
||||||
|
console.log("unauthorized: " + JSON.stringify(msg.data));
|
||||||
|
throw new Error(msg.data.type);
|
||||||
|
})
|
||||||
|
.on('chat message', function (msg) {
|
||||||
console.log("msg");
|
console.log("msg");
|
||||||
$('#messages').append($('<li>').text(msg));
|
$('#messages').append($('<li>').text(msg));
|
||||||
});
|
});
|
||||||
}).emit('authenticate', {token: userToken}); // send the jwt
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user