Search Issue Tracker
Not Reproducible
Votes
1
Found in
4.6.0p1
Issue ID
652658
Regression
No
[WWW] [iOS] [Android] Status and other keys missing from WWW.responseHeaders on mobile
To Reproduce:
1. Play the attached project in editor & click "Header test", notice the printed out responseHeaders.
2. Deploy the same project to iOS or Android notice, that some of the headers are missing. For example there is no Status key on iOS, and even if there is a key value pair for status on android, the Status key itself is null.
(see the attached screenshots)
Comments (3)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Keywords on Material Variants aren't automatically saved when changed on original Material through Shader Graph
- Light Probes get baked when calling LightProbes.Tetrahedralize
- Shadows flicker and cause visual artifacts when modifying a GameObject's bounds using Swizzle (Y Mask) and Sine Time nodes
- [WebGL] Frame rate drops by 5-20 fps when moving cursor or touch input in the Player
- Light bleeds when using box shaped spotlight with specific Emission Range values
mitchmeyer1
Jun 19, 2017 12:30
I ended up moving to BestHTTP library. I would suggest it for anyone having issues with WWW.
andersemil
Feb 16, 2015 12:03
Same problem here. We ended up testing with the following hack:
int statusCode = 200;
if (!String.IsNullOrEmpty (www.error))
{
//first three characters hold the three digit statuscode
statusCode = int.Parse (www.error.substring (0,3));
}
TeBeer
Feb 13, 2015 06:40
I am also getting a key/value pair in response headers like this:
(NULL:HTTP/1.1 200 OK)
Happens on android, haven't tested on iOS.