앱ID : 987811
const SERVICE_APP_ADMIN_KEY = ‘어드민키’; // 여기에 본인의 서비스 앱 어드민 키를 넣어주세요
const from = ‘2022-05-17T12:00:00Z’; // 직접 값을 입력
const to = ‘2022-06-17T12:00:00Z’; // 직접 값을 입력
const apiUrl = https://kapi.kakao.com/v2/api/calendar/holidays
;
fetch(${apiUrl}?from=${from}&to=${to}
, {
method: ‘GET’,
headers: {
‘Authorization’: KakaoAK ${SERVICE_APP_ADMIN_KEY}
}
})
.then(response => {
if (response.status === 200) {
return response.json();
} else {
throw new Error(API 요청에 실패하였습니다. 응답 코드: ${response.status}
);
}
})
.then(data => {
// API 응답 데이터를 처리합니다.
console.log(data);
})
.catch(error => {
console.error(‘오류 발생:’, error); // 오류 메시지 출력
});
파라미터와 header값도 제대로 넣은거 같은데 자꾸
오류 발생: Error: API 요청에 실패하였습니다. 응답 코드: 400 라고 나오는데요…
원인이 멀까요?ㅜㅜ
감사합니다.