Picker
- Description:
피커 API 모듈
Module for the picker APIs
Methods
(static) cleanup()
- Description:
사용한 피커 모듈 리소스 해제
Cleans up used picker module resources
(static) selectFriend(settings) → {Promise.<(FriendsPickerResponse|PickerError)>}
- Description:
싱글 피커 요청
Requests a single picker
- See:
Example
Kakao.Picker.selectFriend({
title: '친구 선택',
showMyProfile: false,
})
.then(function(response) {
console.log(response)
})
.catch(function(error) {
console.error(error)
})
Parameters:
Name | Type | Description | |||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
settings |
Object |
Properties
|
Returns:
- Type
- Promise.<(FriendsPickerResponse|PickerError)>
(static) selectFriends(settings) → {Promise.<(FriendsPickerResponse|PickerError)>}
- Description:
멀티 피커 요청
Requests a multi-picker
- See:
Example
Kakao.Picker.selectFriends({
title: '친구 선택',
showMyProfile: false,
maxPickableCount: 10,
minPickableCount: 1,
})
.then(function(response) {
console.log(response)
})
.catch(function(error) {
console.error(error)
})
Parameters:
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
settings |
Object |
Properties
|
Returns:
- Type
- Promise.<(FriendsPickerResponse|PickerError)>
Type Definitions
FriendsPickerResponse
- Description:
선택한 사용자 정보 목록
A list of the selected user information
Properties:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
response |
Object |
Properties
|
선택한 사용자 정보 목록
A list of the selected user information
Type:
- Object
PickerError
- Description:
피커 에러
Picker error
Properties:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
error |
Object |
Properties
|
피커 에러
Picker error
Type:
- Object
SelectedUser
- Description:
선택한 사용자 정보
Selected user information
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
uuid |
String | 고유 ID |
|
id |
String |
<nullable> |
회원번호, 앱과 연결된 사용자에게만 존재 |
profile_nickname |
String |
<nullable> |
프로필 닉네임 |
profile_thumbnail_image |
String |
<nullable> |
프로필 썸네일 이미지 |
favorite |
Boolean |
<nullable> |
즐겨찾기 친구 여부 |
선택한 사용자 정보
Selected user information
Type:
- Object