I have an application where I show Instagram posts with their attributes (like/comment count, post thumbnail etc.). I use a private API with python to get those attributes.
I was using <img>
tag and src attribute for showing post thumbnails, by giving this sample URL which is from API response:
These post thumbnails were visible on my app as they should be, but after a time suddenly they are not visible anymore. I thought URL signatures are expired but that is not the reason, when I click the link I gave above I can succesfully see thumbnail of the post.
I also see in my console: "Failed to load resource: net::ERR_BLOCKED_BY_RESPONSE"
To simplify:
My app is on django if it's relative. What is the thing that I'm missing out, it should be something simple I believe?