Releases: simplificator/keycloak_oauth
Releases · simplificator/keycloak_oauth
v2.0.2
v2.0.1
v2.0.0
Breaking
- To avoid confusion what kind of token will be requested from Keycloak, we renamed
KeycloakOauth::PostTokenService
toKeycloakOauth::PostAuthorizationCodeService
. - Rails'
default_url_options
are required to be configured.
Added
- New service named
KeycloakOauth::PostRefreshTokenService
to request a new access token with a refresh token. - Expiration of both the refresh and access token will be written to the session. You can retrieve them by calling
session[:access_token_expires_at]
orsession[:refresh_token_expires_at]
in your controller.
Changed
- The default redirection url for a successful login has been changed from
/
to theroot_path
of your app.