next-auth
Version:
Authentication for Next.js
30 lines (29 loc) • 591 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Osu;
function Osu(options) {
return {
id: "osu",
name: "Osu!",
type: "oauth",
token: "https://osu.ppy.sh/oauth/token",
authorization: {
url: "https://osu.ppy.sh/oauth/authorize",
params: {
scope: "identify"
}
},
userinfo: "https://osu.ppy.sh/api/v2/me",
profile(profile) {
return {
id: profile.id,
email: null,
name: profile.username,
image: profile.avatar_url
};
},
options
};
}
;