I want to shoot channel videos using youtube api. First 10 minutes this code worked but now I am getting such error. image
JavaScript
let fetchUrl = `https://www.googleapis.com/youtube/v3/search?key=${API_KEY}&channelId=${channelId}`;fetch(fetchUrl).then(response => response.json()).then(resJson => console.log(resJson.items))
I want to list videos with "resJson.items" line.