providers/kakao
default()β
default<
P
>(options
):OAuthConfig
<P
>
Add Kakao login to your page.
Setupβ
Callback URLβ
https://example.com/api/auth/callback/kakao
Configurationβ
import Auth from "@auth/core"
import Kakao from "@auth/core/providers/kakao"
const request = new Request(origin)
const response = await Auth(request, {
providers: [Kakao({ clientId: KAKAO_CLIENT_ID, clientSecret: KAKAO_CLIENT_SECRET })],
})
Resourcesβ
Configurationβ
Create a provider and a Kakao application at https://developers.kakao.com/console/app. In the settings of the app under Kakao Login, activate web app, change consent items and configure callback URL.
Notesβ
By default, Auth.js assumes that the Kakao provider is based on the OAuth 2 specification.
The Kakao provider comes with a default configuration. To override the defaults for your use case, check out customizing a built-in OAuth provider.
If you think you found a bug in the default configuration, you can open an issue.
Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec, we might not pursue a resolution. You can ask for more help in Discussions.
Type parametersβ
βͺ P extends KakaoProfile
Parametersβ
βͺ options: OAuthUserConfig
< P
>
Returnsβ
OAuthConfig
< P
>
KakaoProfileβ
https://developers.kakao.com/docs/latest/ko/kakaologin/rest-api#req-user-info type from : https://gist.github.com/ziponia/cdce1ebd88f979b2a6f3f53416b56a77
Extendsβ
Record
<string
,any
>