next-auth
Version:
Authentication for Next.js
28 lines (24 loc) • 511 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Osso;
function Osso(options) {
return {
id: "osso",
name: "Osso",
type: "oauth",
authorization: `${options.issuer}oauth/authorize`,
token: `${options.issuer}oauth/token`,
userinfo: `${options.issuer}oauth/me`,
profile(profile) {
return {
id: profile.id,
name: profile.name,
email: profile.email,
image: null
};
},
options
};
}
;