Is it possible to use the DownloadHandlerAssetBundle (UnityWebRequest) to download from a password protected ftp server on Android?
I got it working on PC by using this format for the url: ftp://username:password@hostname/
But it looks like that isn't supported on Android. I ended up trying to use SetRequestHeader("AUTHORIZATION", "Basic" + base64UsernameAndPassword). But that wouldn't even work on PC. I'm guessing that's not part of the ftp protocol.
I've tried searching for the solution but came up empty.
↧