Next.js Discord

Discord Forum

Error fetching TMDB api using axios or fetch

Unanswered
Japanese flying squid posted this in #help-forum
Open in Discord
Japanese flying squidOP
Can somebody plz try to run this code in local next js project
// import Image from "next/image";

export default function Home() {
  fetch(
    "https://api.themoviedb.org/3/trending/all/week?api_key=6569195e1cb3cc992eb5e2348fb73215",
  )
    .then((rs) => rs.json())
    .then((data) => console.log(data));
  return (
    <main className="flex min-h-screen flex-col items-center justify-between p-24">
      <p>HI</p>
    </main>
  );
}
. I keep getting fetch failed time out or refused error, tried on replit next js project it works and api key is also valid.

0 Replies