Skip to content

Commit 29cd654

Browse files
bploetzziluvatar
authored andcommitted
Document NotBeforeError (#529)
1 parent 683d8a9 commit 29cd654

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,30 @@ jwt.verify(token, 'shhhhh', function(err, decoded) {
298298
});
299299
```
300300

301+
### NotBeforeError
302+
Thrown if current time is before the nbf claim.
303+
304+
Error object:
305+
306+
* name: 'NotBeforeError'
307+
* message: 'jwt not active'
308+
* date: 2018-10-04T16:10:44.000Z
309+
310+
```js
311+
jwt.verify(token, 'shhhhh', function(err, decoded) {
312+
if (err) {
313+
/*
314+
err = {
315+
name: 'NotBeforeError',
316+
message: 'jwt not active',
317+
date: 2018-10-04T16:10:44.000Z
318+
}
319+
*/
320+
}
321+
});
322+
```
323+
324+
301325
## Algorithms supported
302326

303327
Array of supported algorithms. The following algorithms are currently supported.

0 commit comments

Comments
 (0)