/** *
( options: OAuthUserConfig
): OAuthConfig
{ return { id: "kakao", name: "Kakao", type: "oauth", authorization: "https://kauth.kakao.com/oauth/authorize?scope", token: "https://kauth.kakao.com/oauth/token", userinfo: "https://kapi.kakao.com/v2/user/me", client: { token_endpoint_auth_method: "client_secret_post", }, profile(profile) { return { id: profile.id.toString(), name: profile.kakao_account?.profile?.nickname, email: profile.kakao_account?.email, image: profile.kakao_account?.profile?.profile_image_url, } }, options, } }