providers/united-effects
default()β
default<P>(options): OAuthConfig< P >
Add United Effects login to your page.
Setupβ
Callback URLβ
https://example.com/api/auth/callback/united-effects
Configurationβ
import Auth from "@auth/core"
import UnitedEffects from "@auth/core/providers/united-effects"
const request = new Request(origin)
const response = await Auth(request, {
providers: [UnitedEffects({ clientId: UE_CLIENT_ID, clientSecret: UE_CLIENT_SECRET })],
})
Resourcesβ
Notesβ
By default, Auth.js assumes that the UnitedEffects provider is based on the Open ID Connect specification.
issuer
should be the fully qualified URL including your Auth Group ID β e.g. https://auth.unitedeffects.com/YQpbQV5dbW-224dCovz-3
The United Effects API does not return the user name or image by design, so this provider will return null for both. United Effects prioritizes user personal information security above all and has built a secured profile access request system separate from the provider API.
The UnitedEffects 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 UnitedEffectsProfile
Parametersβ
βͺ options: OAuthUserConfig
< P
> & {
issuer
: string
;
}
Returnsβ
OAuthConfig
< P
>