{ "opencollection": "1.0.0", "info": { "name": "Kakao Login REST OAuth API", "version": "2.0.0" }, "items": [ { "info": { "name": "OAuth", "type": "folder" }, "items": [ { "info": { "name": "Request OAuth authorization code", "type": "http" }, "http": { "method": "GET", "url": "https://kauth.kakao.com/oauth/authorize", "params": [ { "name": "client_id", "value": "", "type": "query", "description": "REST API key of the registered Kakao app." }, { "name": "redirect_uri", "value": "", "type": "query" }, { "name": "response_type", "value": "", "type": "query" }, { "name": "scope", "value": "", "type": "query" } ] }, "docs": "Display the Kakao Login consent screen and request an authorization code." }, { "info": { "name": "Exchange or refresh OAuth tokens", "type": "http" }, "http": { "method": "POST", "url": "https://kauth.kakao.com/oauth/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "code", "value": "" }, { "name": "refresh_token", "value": "" }, { "name": "client_secret", "value": "" } ] } }, "docs": "Exchange an authorization code for access and refresh tokens, or refresh an existing access token." }, { "info": { "name": "Logout from Kakao", "type": "http" }, "http": { "method": "GET", "url": "https://kauth.kakao.com/oauth/logout", "params": [ { "name": "client_id", "value": "", "type": "query" }, { "name": "logout_redirect_uri", "value": "", "type": "query" } ] }, "docs": "Log the user out of the service and the Kakao Account." } ] } ], "bundled": true }