Co-routine killed after yield return UnityWebRequest.SendWebRequest
In my application several co-routines are downloading files in parallel, and there is a chance that they can try do download the same file to the same path - resulting into a collision and an access...
View ArticleWhat technology UnityWebRequest used in iOS platfrom? how can I modify the...
hi, what's the implement of the UnityWebRequest?Did they use their own implement or use some native Interface of the iOS Network? If I want to modify the the dns info ,how to do that?
View ArticleI get a "login failed" error when using UnityWebRequest and WWWForm. I cant...
I get a "login failed" error when using UnityWebRequest and WWWForm. I cant connect to ftp server. I want to connect ftp server and myphp file. after that I will save to mysql database my datas. But...
View ArticleWeb request pulls html script instead of file text!
Having an issue in unity web requests. When I try to download a file from my url if it's not included or if I've updated it online I always get this as a return if I use web client, web request or any...
View ArticleWhat will happen if i use an obsolete class like "WWW" in unity?
Hi everyone. i wrote a code to put something in the server using "WWW" class but i got a warning that says: this class is obsolete and use UnityWebRequest instead. i tried to use it but i got an error...
View Articlewhen I use UnityWebRequest "Get" in Android(not only Android 9), I get unknow...
when I use UnityWebRequest "Get" in Android(not only Android 9), I get unknow error and code 0,but when I use UnityEditor,I can get data,when I use UnityWebRequest "Get" in Android(not only Android9),...
View ArticleGetting Localization data in Android with streamingAssets and UnityWebRequest
Hi I used Unity localization tutorial to localize text in my app - In editor it works fine, but in Android it works partly (first canvas it doesn't find strings - shows missingTextString and other...
View ArticleUnityWebRequest Post Not Returning Anything
The player gets registered in the database succesfully but it seems like the code after 'yield return www.SendWebRequest()' is never executed. Not a single Debug.Log() is showing up in my console. Can...
View ArticleCan't get UnityWebRequest to work on android
So I'm making an app that has a feature where the users can add their own image and model. I read that I should use **UnityWebRequest** to get the image with a URL like...
View ArticleDownload multiple files from server
Hello and thanks for checking this question! I'm making a WebGL app and I need to download multiple files when the page loads. Here is my code. It is working perfect for downloading a single file. What...
View ArticleUnity Web Request to a PHP file returns a long HTML file
Hello. I'm trying to access an output from a PHP file and it just doesn't happen. I'm going leave both the PHP code and the Unity C# Script so you can look at it. I'm not going to leave the output...
View ArticleGet a texture from persistentDataPath in Android
I need to get a texture using UnityWebRequest from Application.persistentDataPath and apply it to a plane in the scene. It works perfectly on the editor and on PC build, but on Android it cannot get...
View Articlecant load asset from firebase to unity
I am creating an augmented reality app using vuforia and unity. i have uploaded my assetbundle to firebase storage and i want to retrieve a 3d model saved inside it and load it as a child on my image...
View ArticleUnity keep crashing when loading scene from a couritne (Unity 5.x)
I am trying to send a POST request to an API and load a scene when the ![alt text][1]script gets a response, but it's crashing the Unity. Version 5.x Thanks in advance. [1]:...
View Articlecan we send data to GET api?,can we send data to get type api ?
**http://13.127.138.63:8008/api?answer=no&next=1** (GET api) I trying with below code, it show 405 error. void Start() { StartCoroutine(Upload()); } IEnumerator Upload() { List formData = new...
View ArticleWhy do I get Parse error (code 400) from Google Ftiness API in Unity?
I am trying to read steps count from GoogleFitness API in Unity application. First I go to Google's OAuthPlayground, authorize the fitness api and copy the access token. In Unity I have a scene with...
View ArticleHow to use UnityWebRequest to access local text file on Andorid build
Hello, I'm trying to make a simple app that chooses a random workout from a text file and will be build on Android. I've read that you can't access files with streamreaders directly because of the way...
View ArticleUnityWebRequist Return 403
Am trying to access some images on my website using UnityWebRequist from server but returns 403 Forbidden for some reasons i already checked the permissions on the server for the directory and images...
View ArticleHttpClient with Proxy
I am unable to make web requests in unity targeting mono with a configured proxy. I am using HttpClient and Unity 2019.2.18f1. When running this exact same code in a .NET core console app, I have no...
View ArticleLoading Asset in Android using StreamingAssets and UnityWebRequest
I can't believe how lack of documentation and support there is to load a simple file in Android platform... I know i have to put the file in StreamingAssets named folder, and then make a request using...
View Article