You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
I enabled caching and then things broke - I could see there was a 403 error trying to fetch images from Instagram. It took me a while, but it turns out that sorl-thumbnail removes URL parameters by default, which breaks requests to Instagram (not sure if this is a change from the past).
To fix this you need to add this to your settings:
THUMBNAIL_REMOVE_URL_ARGS = False
The text was updated successfully, but these errors were encountered:
Hey @TomAnthony I'm facing the same issue, I tried to add this variable in my settings and it didn't work. The weird thing is that works only on localhost and not on the production server. Same for you when you had the problem?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I enabled caching and then things broke - I could see there was a 403 error trying to fetch images from Instagram. It took me a while, but it turns out that
sorl-thumbnail
removes URL parameters by default, which breaks requests to Instagram (not sure if this is a change from the past).To fix this you need to add this to your settings:
The text was updated successfully, but these errors were encountered: