API
- Description:
API 호출에 사용하는 모듈
Module used to call Kakao APIs
Methods
(static) cleanup()
- Description:
사용한 API 모듈 리소스 해제
Cleans up used API module resources
(static) request(settings) → {Promise}
- Description:
카카오 API 호출
Calls Kakao APIs
- See:
-
- 데모 보러가기
- REST API 레퍼런스 각 API에 대한 요청 파라미터와 응답은 REST API와 동일합니다.
Example
Kakao.API.request({
url: '/v2/user/me', // 사용자 정보 가져오기
})
.then(function(response) {
console.log(response)
})
.catch(function(error) {
console.error(error)
})
Kakao.API.request({
url: '/v1/user/update_profile', // 사용자 정보 저장하기
data: {
properties: {
preferred_brand: 'Kakao',
},
},
})
.then(function(response) {
console.log(response)
})
.catch(function(error) {
console.error(error)
})
Parameters:
Name | Type | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
settings |
Object |
Properties
|
Returns:
- Type
- Promise