/** *
( options: OAuthUserConfig
& { issuer: string } ): OAuthConfig
{ return { id: "mastodon", name: "Mastodon", type: "oauth", authorization: `${options.issuer}/oauth/authorize?scope=read`, token: `${options.issuer}/oauth/token`, userinfo: `${options.issuer}/api/v1/accounts/verify_credentials`, profile(profile) { return { id: profile.id, name: profile.username, image: profile.avatar_static, email: null, } }, options, } }