Back to Explorer

Kakao OAuth & OIDC endpoints

Kakao OAuth & OIDC endpoints and related development resources

Kakao OIDC discovery endpoint

https://kauth.kakao.com/.well-known/openid-configuration
The well-known endpoint (.well-known/openid-configuration) that provides OpenID Connect configuration metadata, including all available endpoints and supported features.

Kakao issuer URL

https://kauth.kakao.com
A unique identifier URL that identifies the OAuth/OIDC provider and is used to validate tokens

Kakao authorization endpoint

https://kauth.kakao.com/oauth/authorize
The endpoint to redirect users to in order to grant your application access to their account.

Kakao token endpoint

https://kauth.kakao.com/oauth/token
The endpoint to exchange the authorization code or refresh token for an access token and a refresh token.

Kakao userinfo endpoint

https://kapi.kakao.com/v1/oidc/userinfo
The standardized OAuth endpoint that returns authenticated user profile information, including claims about the current user based on the scope of access token.

Kakao JWKS URI

https://kauth.kakao.com/.well-known/jwks.json
The URI that provides public keys for verifying JWT tokens. These keys are used to validate the authenticity of tokens issued by the authorization server.

Kakao OAuth & OIDC documentation and resources