앱 ID:1114080
안녕하세요 톡 캘린더 일정 생성 API 에 대해 문의 드릴게 있습니다.
문서를 보면 팀원들에게 테스트하고 검수 신청이라 되어있는데
톡 캘린더 이용 중 동의를 선택 했음에도 이용 중 동의 화면이 따로 나오지 않습니다.
request;
const createEvent = async (token) =>{
const data = {
event: {
title: "일정 테스트",
time: {
start_at: "2024-09-27",
end_at: "2024-09-28",
time_zone: "Asia/Seoul",
all_day: false,
lunar: false
},
description: "캘린더 API 테스트",
reminders: [15, 30],
color: "RED"
}
};
try{
return await axios.post("https://kapi.kakao.com/v2/api/calendar/create/event", data, {
headers: {
"Authorization": `Bearer ${token}`,
"Content-Type": "application/json" // JSON 형식으로 데이터 전송
}
})
}catch (err){
console.error(err)
}
response:
1. response:
1. config: {transitional: {…}, adapter: Array(3), transformRequest: Array(1), transformResponse: Array(1), timeout: 0, …}
2. data:
1. allowed_scopes: Array(4)
1. 0: "account_email"
2. 1: "profile_image"
3. 2: "talk_message"
4. 3: "phone_number"
5. length: 4
6. [[Prototype]]: Array(0)
2. api_type: "CALENDAR_CREATE_EVENT"
3. code: -402
4. msg: "insufficient scopes."
5. required_scopes: Array(1)
1. 0: "talk_calendar"
2. length: 1
3. [[Prototype]]: Array(0)
어떻게 이용 중 동의를 하여 캘린더 API 를 테스트 해 볼 수 있을까요?