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
{{ message }}
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
If /api/login has scope=offline_access param,
generate a token with an expiry of 365 days.
Token validation and usage
Validate if the token is an offline token using the "jti" claim, and if yes, check if it was last used within 30 days using the TOKEN_ACCESS_LOG table ( https://www.dbdesigner.net/designer/schema/98194 )
If yes, generate a new access token and return it.
as a dependency of #350
What are offline tokens?
https://fabric8-services.github.io/fabric8-auth/reference.html#_offline_tokens
Token issuance:
If /api/login has
scope=offline_access
param,generate a token with an expiry of 365 days.
Token validation and usage
Dependencies:
The text was updated successfully, but these errors were encountered: