Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Audio Elk

6
Posts
2
Topics
94
Followers
19
Following
A member registered Mar 14, 2021 · View creator page →

Creator of

Recent community posts

SOLVED

The issue that caused this was that I had recently uploaded new cover images for all my products, and the API key I was using was somehow only fetching the old (I presume cached?) data. With some of it not being public anymore that would explain a 403 I'm guessing. By generating a new API key this issue was resolved.

Some additional info:


  • I'm using Next.JS 13.4.4
  • These products are published and available
  • next.config.js has the domains properly added to both images.domains and images.remotepatterns as seen below:
const nextConfig = {
  images: {
    domains: ["img.itch.zone", "itch.io"],
    remotePatterns: [
      {
        protocol: "https",
        hostname: "img.itch.zone",
        port: "",
      },
      {
        protocol: "https",
        hostname: "itch.io",
        port: "",
      },
    ],
  },
};
(1 edit)

Hello,
I'm using the API to fetch my itchio store items to display them on my website. The setup was easy enough, but on 2 of my store items' cover_urls I'm getting an upstream image response failure with a 403. These are all published items, nothing in drafts or hidden from public view, and I'm not seeing any difference in how I have the working products set up vs the ones having this problem.


I was wondering if Itch.io's API had endpoints to fetch my blog posts. I don't see anything in the documentation for it, so I assume not, but wanted to reach out in case I'm missing something.

I would like to be able to host my devlogs/blog posts here and utilize the API to post them on my website.

No worries, discovered the problem and the fixed files are uploaded now!

I will re-upload right now. Give me one moment!