Oh right, yes I would like credit! I forgot to update the page. Thanks for bringing that to my attention, I'll get that fixed now :)
Audio Elk
Creator of
Recent community posts
Hello, originally I had this licensed under the normal licensing I applied to paid libraries. I realize now that can cause some confusion, so I decided to simplify the licensing on my free packs.
My free sound libraries are now under CC BY-SA 4.0 DEED
https://creativecommons.org/licenses/by-sa/4.0/
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: "",
},
],
},
};
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.







