Acknowledged

BUG: makeWebRequest fails on (some) 302 - Temporary redirect on device

I've run into an issue with makeWebRequest, where it fails to download an audio file due to the web server returning 302 (temporary moved).

It works fine in the emulator, but fails on the device (Fenix 7 Pro).

The url in question is https://chtbl.com/track/E5EGGC/traffic.libsyn.com/secure/goodfriendsofjacksonelias/good-friends-70.mp3

From what I can see, the URL above first does a 301 permanently moved, and then a 302 temporary moved, to a temporary URL.

It would be ok if the callback included the location header in the response, so we could manually deal with the 302, but as it is now I get responseCode 302, and data: null, so there's nothing I can do if an url is returning 302 (except using another server for redirection).