21 lines
507 B
JavaScript
21 lines
507 B
JavaScript
/** @type {import(".").OAuthProvider} */
|
|
export default function Netlify(options) {
|
|
return {
|
|
id: "netlify",
|
|
name: "Netlify",
|
|
type: "oauth",
|
|
authorization: "https://app.netlify.com/authorize",
|
|
token: "https://api.netlify.com/oauth/token",
|
|
userinfo: "https://api.netlify.com/api/v1/user",
|
|
profile(profile) {
|
|
return {
|
|
id: profile.id,
|
|
name: profile.full_name,
|
|
email: profile.email,
|
|
image: profile.avatar_url,
|
|
}
|
|
},
|
|
options,
|
|
}
|
|
}
|