안녕하세요. 제가 안드로이드 스튜디오 webview의 javascript에 길찾기 api를 사용하려고 다음과 같이 작성했는데
const url=“https://apis-navi.kakaomobility.com/v1/directions?origin=127.11015314141542,37.39472714688412&destination=127.10824367964793,37.401937080111644”;
fetch(url,{
method: "GET",
headers:{
"Authorization":'KaKaoAK 내restapi키넣었음'
}
})
.then(response => response.json())
.then(data=>{
console.log(JSON.stringify(data));
})
.catch(error=>{
console.log(error);
});
콘솔에 {“code”:-401,“msg”:“cannot find Authorization : KakaoAK header”} 이렇게 표시됩니다. rest api값도 제대로 넣었는데 무슨 문제일까요