mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-11-09 22:20:08 +01:00
Merge pull request #21 from kennyki/patch-1
Added example of handling token expiration
This commit is contained in:
commit
dbb4e95415
23
README.md
23
README.md
@ -78,6 +78,29 @@ var socket = io.connect('http://localhost:9000', {
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Handling token expiration
|
||||||
|
|
||||||
|
__Server side__:
|
||||||
|
|
||||||
|
When you sign the token with an expiration time:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var token = jwt.sign(user_profile, jwt_secret, {expiresInMinutes: 60});
|
||||||
|
```
|
||||||
|
|
||||||
|
Your client-side code should handle it as below.
|
||||||
|
|
||||||
|
__Client side__:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
socket.on("error", function(error) {
|
||||||
|
if (error.type == "UnauthorizedError" || error.code == "invalid_token") {
|
||||||
|
// redirect user to login page perhaps?
|
||||||
|
console.log("User's token has expired");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
||||||
You are always welcome to open an issue or provide a pull-request!
|
You are always welcome to open an issue or provide a pull-request!
|
||||||
|
Loading…
Reference in New Issue
Block a user