We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf254e9 + afddbec commit e8a8fd4Copy full SHA for e8a8fd4
1 file changed
onekey_client/client.py
@@ -1,6 +1,7 @@
1
import functools
2
import gc
3
import secrets
4
+import time
5
from importlib import resources
6
from pathlib import Path
7
@@ -261,7 +262,7 @@ def _verify_token(
261
262
claims_options=claims_options,
263
claims_params={"nonce": nonce},
264
)
- decoded_token.validate()
265
+ decoded_token.validate(now=time.time())
266
return decoded_token
267
268
0 commit comments