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 bb236e4 + 3df6470 commit f047c3aCopy full SHA for f047c3a
oauth2cli/oidc.py
@@ -44,7 +44,7 @@ def decode_id_token(id_token, client_id=None, issuer=None, nonce=None, now=None)
44
err = None # https://openid.net/specs/openid-connect-core-1_0.html#IDTokenValidation
45
_now = int(now or time.time())
46
skew = 120 # 2 minutes
47
- TIME_SUGGESTION = "Make sure your computer's time is correctly synchronized."
+ TIME_SUGGESTION = "Make sure your computer's time and time zone are both correct."
48
if _now + skew < decoded.get("nbf", _now - 1): # nbf is optional per JWT specs
49
# This is not an ID token validation, but a JWT validation
50
# https://tools.ietf.org/html/rfc7519#section-4.1.5
0 commit comments