providers/kinde
KindeProfile
The returned user profile from Kinde when using the profile callback. Reference.
Extends
Record
<string
,any
>
Properties
first_name
first_name: string;
The user’s given name.
id
id: string;
The user’s unique identifier.
last_name
last_name: string;
The user’s family name.
picture
picture: string;
URL pointing to the user’s profile picture.
preferred_email
preferred_email: string;
The user’s email address.
provided_id
provided_id: string;
The user’s identifier from a previous system.
username
username: string;
The user’s username.
default()
default(config): OIDCConfig<KindeProfile>
Setup
Callback URL
https://example.com/api/auth/callback/kinde
Configuration
import { Auth } from "@auth/core"
import Kinde from "@auth/core/providers/kinde"
const request = new Request(origin)
const response = await Auth(request, {
providers: [
Kinde({
clientId: KINDE_CLIENT_ID,
clientSecret: KINDE_CLIENT_SECRET,
issuer: KINDE_DOMAIN,
}),
],
})
Resources
Notes
The Kinde provider comes with a default configuration. To override the defaults for your use case, check out customizing a built-in OAuth provider.
Help
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.
Parameters
Parameter | Type |
---|---|
config | OIDCUserConfig <KindeProfile > |