Skip to main content

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​

ZITADEL OpenID Endpoints

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.

tip

The ZITADEL provider comes with a default configuration. To override the defaults for your use case, check out customizing a built-in OAuth provider.

Disclaimer

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 extends ZitadelProfile<P>

Parameters​

ParameterType
optionsOAuthUserConfig<P>

Returns​

OIDCConfig<P>