Skip to content

Commit 266d655

Browse files
updated jwt lifetime requirement (#663)
1 parent f30608b commit 266d655

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/includes/jwt-provider-valid-token.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
- Contain an issued at time claim with a time and date in the past.
1010

11-
- Have a token lifetime of less than or equal to one hour. The token
11+
- Have a token lifetime of less than or equal to 24 hours. The token
1212
lifetime is the difference between the issued at time claim and the
1313
expiration time claim.
1414

@@ -26,14 +26,14 @@
2626
}
2727
2828
|charts-short| can accept a token containing the following claims
29-
because the token lifetime of one hour is acceptable:
29+
because the token lifetime of 24 hours is acceptable:
3030

3131
.. code-block:: json
3232
:copyable: false
3333
3434
{
3535
"iat": "1585769399",
36-
"exp": "1585772999"
36+
"exp": "1586002999"
3737
}
3838
3939
- Are signed using either the ``HS256`` or ``RS256`` signing

0 commit comments

Comments
 (0)