So, I tried making a WWW call to download some media on my web server.
It works fine for most of the files except when the url has a blank symbol e.g. the texture file name “hello world.png”
it will return “Bad URL” error message and not download anything. This only happens on iOS.
I also tried convert the url string using System.Uri.EscapeUriString() so the file name becomes “hello%20world.png”
but still no luck.
Again, I have no problem on Android or Standalone.
Have anyone experienced the same problem before?