Android HTTPS POST Request
I am having a heck of a time wrapping my head around the TLS handshake concept Unity Docs use this: using UnityEngine.Networking; using System.Security.Cryptography.X509Certificates; // Based on...
View ArticleHow to upload/PUT to a GitHub repository while playing
I know this question is very broad and I cannot supply any coding attempts. However I have been diligently searching the web for a solution to my problem. How do I upload data onto a GitHub repository...
View ArticleUnity user authorization API with return value,Unity, app needs user's...
What I need the app to do is to send a user over to a link with some parameters, like the ID of my app, what I want the response from the API to be. I achieved this with Application.Url(url);. The user...
View ArticleDownload pdf file form url and saving in the specific folder in the mobile.
I had implemented using "Application.openurl()" and it automatically downloading .pdf file, but it is redirecting to browser. which shouldn't happen. My scenario is, downloading pdf file and save in...
View ArticleDropBox Https Api Request : What should I do?
Hello everyone. I'm going crazy with DropBox Api Http Never used an Api Call and don't know how to manage it. **What should I Do :** 1. Get access to my Public Folder 2. Find Sharable Link for images...
View Articleweb request hangs up in unity
Hi! I am trying to wirelessly control an IP camera (ricoh theta z1) in my Unity app. At the very beginning, I tried the **HttpWebRequest** and the script looks like this: public class...
View ArticleI get this error when doing webrequest
Hi, I open my project this morning, it was working fine but all of sudden.. I get this error message from the same coroutine Curl error 51: Cert verify failed: UNITYTLS_X509VERIFY_FLAG_CN_MISMATCH Can...
View ArticleList suddenly auto-clear after WebRequest (in another Script)?
Hi at all. Strange issue happen. **I've implemented a small call WebRequest to Api DropBox** ([check here the final solution i've found][1]) [1]:...
View Articleunitywebrequest and ARFoundation In IOS device get stuck randomly
trying to download Asset bundle from server using unitywebrequest, sometimes it is unable to download manifest file randomly, and can't able to connect the server for further until kill the app in...
View ArticleTexture from web is not working on shader?
Hi. I'm working on masking shader which download mask texture from www. Here is my code snippet. var request = UnityWebRequestTexture.GetTexture(url); await request.SendWebRequest(); var maskTexture =...
View ArticleHow do I retrieve a binary file with UnityWebRequest?
I'm building a game for WebGL. My main goal is to save and load data from a binary file from my StreamingAssets folder. --------- I've read the documentation that says that I need to use...
View ArticleError: HTTP/1.1 405 Method Not Allowed
When I try to use UnityWebRequest.Put() I get the error aforementioned. ------ I am hosting my game on HostGator. I've asked their tech support but they have no idea and they say I should consult with...
View ArticleFatal Exception when loading multiple image files on Android from persistent...
I'm having trouble to solve a Fatal Exception that is occurring when trying to load multiple .png files from my android persistent data path using Unity Web Request. The coroutine that does the image...
View ArticleHow to replace WWW to UnityWebRequest
using Dummiesman; using System.IO; using System.Text; using UnityEngine; public class ObjFromStream : MonoBehaviour { void Start () { //make www var www = new...
View ArticleNot able to download the same file simultaneously
I have started two coroutines to download two gifs, if the gif urls are different everything is fine. If I pass same urls second coroutine is not unpausing. Can we not download same file at same time?...
View Articlecommunication between unity and browser using webRTC
I have a question about the communication between unity and the browser using webRTC. I would like to have another computer B in addition to computer A running unity, and I would like to move objects...
View ArticleHow do I add a header and a file at the web request at the same time?
Hello, I am having some issues sending files over the server. I have a few different types of calls I need to make to the server. One is send a file, one send a string with a custom header and one send...
View Article,Convert Curl command with wav file to Unity web request
,Currently trying to convert a curl command to Unity Web request Curl Command: curl -H “x-app-key:APP_KEY_HERE“ / -F " file=@AudioFile.wav" / -F "user_token=USER_TOKEN_HERE" / -F "category=orange" /...
View ArticleHow can I load an AudioClip from a local audio file using UnityWebRequests?
I'm trying to make a rhythm game which allows for creation of custom levels. To accomplish this, I need to be able to load audio files from local folders. I can't use the Resources folder because the...
View ArticleWWWForm not posting variables
I have this working just fine in one project however in a second project my _POST variables are blank. Thoughts? IEnumerator GetClub() { Debug.Log("GetClub: - START"); WWWForm form = new WWWForm();...
View Article