You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -43,14 +43,16 @@ There are no default values for `expiresIn`, `notBefore`, `audience`, `subject`,
43
43
44
44
The header can be customized via the `option.header` object.
45
45
46
-
Generated JWTs will include an `iat` claim by default unless `noTimestamp` is specified.
46
+
Generated jwts will include an `iat`(issued at) claim by default unless `noTimestamp` is specified. If `iat` is inserted in the payload, it will be used instead of the real timestamp for calculating other things like `exp` given a timespan in `options.expiresIn`.
47
47
48
48
Example
49
49
50
50
```js
51
51
// sign with default (HMAC SHA256)
52
52
var jwt =require('jsonwebtoken');
53
53
var token =jwt.sign({ foo:'bar' }, 'shhhhh');
54
+
//backdate a jwt 30 seconds
55
+
var older_token =jwt.sign({ foo:'bar', iat:Math.floor(Date.now() /1000) -30 }, 'shhhhh');
54
56
55
57
// sign with RSA SHA256
56
58
var cert =fs.readFileSync('private.key'); // get private key
@@ -81,6 +83,8 @@ encoded public key for RSA and ECDSA.
81
83
*`ignoreExpiration`: if `true` do not validate the expiration of the token.
82
84
*`ignoreNotBefore`...
83
85
*`subject`: if you want to check subject (`sub`), provide a value here
86
+
*`clockTolerance`: number of second to tolerate when checking the `nbf` and `exp` claims, to deal with small clock differences among different servers
0 commit comments