next-auth
Version:
Authentication for Next.js
33 lines (29 loc) • 599 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Auth0;
function Auth0(options) {
return {
id: "auth0",
name: "Auth0",
wellKnown: `${options.issuer}/.well-known/openid-configuration`,
type: "oauth",
authorization: {
params: {
scope: "openid email profile"
}
},
checks: ["pkce", "state"],
idToken: true,
profile(profile) {
return {
id: profile.sub,
name: profile.nickname,
email: profile.email,
image: profile.picture
};
},
options
};
}
;