providers/beyondidentity
Functionsβ
default()β
Add Beyond Identity login to your page.
Exampleβ
import { Auth } from "@auth/core"
import BeyondIdentity from "@auth/core/providers/beyondidentity"
const request = new Request("https://example.com")
const response = await Auth(request, {
providers: [BeyondIdentity({ clientId: "", clientSecret: "", issuer: "" })],
})
Resourcesβ
Notesβ
By default, Auth.js assumes that the BeyondIdentity provider is based on the OIDC specification.
The BeyondIdentity 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.
Signatureβ
default(config: OIDCUserConfig<BeyondIdentityProfile>): OIDCConfig<BeyondIdentityProfile>;
Parametersβ
Name | Type |
---|---|
config | OIDCUserConfig <BeyondIdentityProfile > |
Returnsβ
OIDCConfig
<BeyondIdentityProfile
>
Interfacesβ
BeyondIdentityProfileβ
Seeβ
Beyond Identity Developer Docs
Propertiesβ
emailβ
string
The user's email address.
nameβ
string
The user's full name.
preferred_usernameβ
string
The user's preferred username.
subβ
string
The user's unique identifier.