Hi,
As a follow up to https://www.themoviedb.org/talk/65cc7217894ed6014726c832, on further digging, it seems like the "referer" header may be causing issues.
Trying this:
curl -L 'https://media.themoviedb.org/t/p/w440_and_h660_face/bL1mwXDnH5fCxqc4S2n40hoVyoe.jpg' -H 'referer: https://www.themoviedb.org/'
returns:
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0"/><style>body{margin:0px;padding:0px;}iframe{width:100%;height:100%}</style><iframe src="http://www.airtel.in/court-orders/ " width="100%" height="100%" frameborder=0></iframe>
but this works fine:
curl -L 'https://media.themoviedb.org/t/p/w440_and_h660_face/bL1mwXDnH5fCxqc4S2n40hoVyoe.jpg'
returns (basically the expected image):
Warning: Binary output can mess up your terminal. Use "--output -" to tell curl to output it to your terminal anyway, or consider "--output <FILE>" to save to a file.
Is it possible the CDN itself may be caching invalid responses? And if so, can it be configured to skip those invalid responses?
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by darthShadow
on August 3, 2025 at 12:55 PM
CDN response for the first (with
referer
header):Notice the
cdn-cache: HIT
.And for the second (without the
referer
header):