hey I was trying to use the api to display the trending movies for the week and it shows in the console but no matter what method I try I can't get it to display in Html
< HTML >
<code text herediv class="moviesContainer">
<div id="trending">
<javaScript>
const options = {
method: 'GET',
headers: {
accept: 'application/json',
Authorization: '<access token>'
}
};
fetch('https://api.themoviedb.org/3/trending/movie/week?language=en-US', options)
.then(response => response.json())
.then(response => console.log(response))
.then(data => {
document.getElementById('trending').textContent = JSON.stringify(data)
})
.catch(error => console.error(error));
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?