const tmdbKey = "TMDB API KEY 사용";
const fetchMovie = async () => {
const url =
"https://api.themoviedb.org/3/trending/all/week?api_key=" +
tmdbKey +
"&language=ko-KR";
const response = await axios.get(url);
console.log(response);
};
fetchMovie();
npm i axios해서 사용하려 했으나 밑에 에러가 발생하여 cdn으로 axios를 가져왔더니 실행됐다.
Uncaught TypeError: Failed to resolve module specifier "axios". Relative references must start with either "/", "./", or "../".
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>