Hey, I have a problem with UnityWebRequest I am not able to load pictures using it. However, when I build my project with Mac/Windows it works.
How can I solve this?
Hey, I have a problem with UnityWebRequest I am not able to load pictures using it. However, when I build my project with Mac/Windows it works.
How can I solve this?
Are you sending requests to the same host as your app or to some other host?
In the later case you need CORS setup, by default you are not allowed to send requests to arbitrary websites.
Thank you