HTTPS connections blocked for URLSession with Skip Fuse #613
-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
|
What you're seeing is the redirect by reqbin: |
Beta Was this translation helpful? Give feedback.
-
|
The Android URLSession should be following redirects by default as well (it is the same curl build as Linux, which also follows redirects). I do note that curl returns a But Safari seems to load it fine 🤔 Is it possible they are doing a User-Agent check? What if you try something like https://httpbin.io/get instead? |
Beta Was this translation helpful? Give feedback.
-
|
Update: I just ran |
Beta Was this translation helpful? Give feedback.
-
|
You could also try setting a delegate and implementing willPerformHTTPRedirection to help diagnose what is going on. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks |
Beta Was this translation helpful? Give feedback.


The Android URLSession should be following redirects by default as well (it is the same curl build as Linux, which also follows redirects).
I do note that curl returns a
403 Forbiddenfor that URL:But Safari seems to load it fine 🤔 Is it possible they are doing a User-Agent check? What if you try something like https://httpbin.io/get instead?