We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firstly, thank you for your efforts here, its appreciated!
Does your library allow for use of the JWT::$leeway configuration?
JWT::$leeway
"You can add a leeway to account for when there is a clock skew times between the signing and verifying servers. It is recommended that this leeway should not be bigger than a few minutes." Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
JWT::$leeway = 60; // $leeway in seconds $decoded = JWT::decode($jwt, $key, array('HS256'))
The text was updated successfully, but these errors were encountered:
I added it to the README. Its supported because Firebase\JWT\JWT::$leeway is public static so it can be modified.
Firebase\JWT\JWT::$leeway
public static
Thanks for information.
Sorry, something went wrong.
No branches or pull requests
Firstly, thank you for your efforts here, its appreciated!
Does your library allow for use of the
JWT::$leeway
configuration?"You can add a leeway to account for when there is a clock skew times between
the signing and verifying servers. It is recommended that this leeway should
not be bigger than a few minutes."
Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
JWT::$leeway = 60; // $leeway in seconds
$decoded = JWT::decode($jwt, $key, array('HS256'))
The text was updated successfully, but these errors were encountered: