providers/keycloak
default()β
default<P>(options): OAuthConfig< P >
Add Keycloak login to your page.
Setupβ
Callback URLβ
https://example.com/api/auth/callback/keycloak
Configurationβ
import Auth from "@auth/core"
import Keycloak from "@auth/core/providers/keycloak"
const request = new Request(origin)
const response = await Auth(request, {
providers: [Keycloak({ clientId: KEYCLOAK_CLIENT_ID, clientSecret: KEYCLOAK_CLIENT_SECRET, issuer: KEYCLOAK_ISSUER, })],
})
Resourcesβ
Create an openid-connect client in Keycloak with "confidential" as the "Access Type".
issuer should include the realm β e.g. https://my-keycloak-domain.com/realms/My_Realm
Notesβ
By default, Auth.js assumes that the Keycloak provider is based on the Open ID Connect specification.
The Keycloak provider comes with a default configuration. To override the defaults for your use case, check out customizing a built-in OAuth provider.
If you think you found a bug in the default configuration, you can open an issue.
Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec, we might not pursue a resolution. You can ask for more help in Discussions.
Type parametersβ
βͺ P extends KeycloakProfile
Parametersβ
βͺ options: OAuthUserConfig
< P
>
Returnsβ
OAuthConfig
< P
>