[TIL] 2023/10/18 axios로 api가져오기

김민재·2023년 10월 18일
0

TIL

목록 보기
15/172
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>
profile
개발 경험치 쌓는 곳

0개의 댓글

관련 채용 정보