next-auth
Version:
Authentication for Next.js
32 lines (28 loc) • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = OneLogin;
function OneLogin(options) {
return {
id: "onelogin",
name: "OneLogin",
type: "oauth",
wellKnown: `${options.issuer}/oidc/2/.well-known/openid-configuration`,
authorization: {
params: {
scope: "openid profile email"
}
},
idToken: true,
profile(profile) {
return {
id: profile.sub,
name: profile.nickname,
email: profile.email,
image: profile.picture
};
},
options
};
}