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
We're approaching this as 2 different questions to answer from the CDN side.
why is server response status returning a 302 when the session request combination is the Safari browser on the MAC OS with Icecast kh 22
and
why is the access-control-allow-origin absent in the header response for this same session request combination
For 1) we believe this is related to changes in how Safari is handling requests. We still get the 302 but have no playback issues after resolving 2). For 2) we explicitly defined the Access-Control-Allow-Origin as https://www.clevelandbrowns.com in the Icecast kh22 config using
and while we still see the 302 in a curl that proxies a Safari request we also see the Headers coming through and get playback at https://www.clevelandbrowns.com/audio/radio
curl -I 'https://cbfc.streamguys1.com/cbdaily.mp3' \
-H 'User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1' \
-H 'Origin: https://www.clevelandbrowns.com' \
-H 'Sec-Fetch-Mode: cors'
HTTP/1.1 302 Found
Connection: Close
Access-Control-Allow-Origin: https://www.clevelandbrowns.com
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept
Access-Control-Allow-Methods: GET, OPTIONS, HEAD
Date: Mon, 01 Jul 2024 22:34:48 GMT
Content-Type: text/html
Location: https://cbfc.streamguys1.com/cbdaily.mp3?_ic2=1719873288879
Content-Length: 0
Hey @jssoderberg I meant this issue to be directed at the maintainers of icecast-kh, but thank you anyway for your reply, it looks like your fix is effective.
I am going to leave this issue open as I suspect it could be a problem for other deployments of icecast-kh where streams are being embedded cross-origin.
Have an issue with a client site that I believe is related to this change.
Unfortunately I am troubleshooting from the client side so I cannot confirm any details of the streaming provider's configuration or infrastructure.
When I make a request using a Safari
user-agent
I receive a 302 but without anyaccess-control-allow-origin
header which is causing CORS errors:If I prepend
Chrome/
to the user-agent header then I get a working response:Is it possible for the server to return a valid access-control-allow-origin header along with the 302?
The text was updated successfully, but these errors were encountered: