providers/zitadel
default()β
Add ZITADEL login to your page.
Exampleβ
import Auth from "@auth/core";
import ZITADEL from "@auth/core/providers/zitadel";
const request = new Request("https://example.com");
const response = await AuthHandler(request, {
providers: [ZITADEL({ clientId: "", clientSecret: "" })],
});
Resourcesβ
Seeβ
Notesβ
By default, Auth.js assumes that the ZITADEL provider is based on the OAuth 2 specification.
The Redirect URIs used when creating the credentials must include your full domain and end in the callback path. For example: For production: https://{YOUR_DOMAIN}/api/auth/callback/zitadel For development: http://localhost:3000/api/auth/callback/zitadel Make sure to enable dev mode in ZITADEL console to allow redirects for local development.
The ZITADEL 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.
default<P>(
options
:OAuthUserConfig
<P
>):OIDCConfig
<P
>
Type parametersβ
P
extendsZitadelProfile
<P
>
Parametersβ
Parameter | Type |
---|---|
options | OAuthUserConfig <P > |
Returnsβ
OIDCConfig
<P
>