

어떤 이유인지는 모르겠지만 owlbot서버랑 연결이 되지않습니다 토큰도 제대로 썼고 어떤 문제인지 모르겠습니다.
let word = '{{ word }}'
$(document).ready(function () {
get_definitions()
})
function get_definitions() {
$.ajax({
type: "GET",
url: `https://owlbot.info/api/v4/dictionary/${word}`,
beforeSend: function (xhr) {
xhr.setRequestHeader("Authorization", "Token c3c98df39c8a1654383193f0b147d17e855e17ce");
},
data: {},
error: function (xhr, status, error) {
alert("에러 발생!");
},
success: function (response) {
console.log(response)
}
})
}
