'content-Type': 'application/x-www-form-urlencoded;charset=utf-8' 의 GET방식 String Array Parameter 예시
app.get('/v1/api/talk/channels', (req, res) => {
axios
.get("https://kapi.kakao.com/v1/api/talk/channels",
{
params: {
"target_id": '111111111',
"target_id_type": 'user_id',
"channel_public_ids": ['_tttttttt','_xxxxxxxx']
},
headers: {
'content-Type': 'application/x-www-form-urlencoded;charset=utf-8',
'Authorization': 'KakaoAK 어드민키'
}
}
)
.then((res) => {
console.log("success");
console.log(res);
})
.catch((err) => {
console.log("err");
console.log(err.response.headers);
console.log(err.response);
})
res.send(res.statusText)
})
'카카오 REST API & SDK > 카카오톡 채널' 카테고리의 다른 글
카카오톡 채널에 친구 추가한 회원 리스트 조회 (0) | 2022.07.28 |
---|---|
플러그인 방식 JS SDK 초기화로 채널 채팅, 채널 추가 사용 (0) | 2021.06.16 |
카카오톡 채널 채팅 시, 이전 url을 함께 보낼 수 있나요? (1) | 2021.06.11 |
한 페이지에서 카카오톡 채널 채팅 버튼 두개 사용하기 (0) | 2021.05.07 |
PHP 예제 - [카카오톡 채널] 고객 관리: 파일 만들기 / 파일 보기 / 사용자 추가하기 / 사용자 삭제하기 (0) | 2021.03.10 |
댓글