Hi Tim,
thanks for the information on this topic, However I'm coming across the same problem. i have made the static call to the OuyaUnityPlugin.java and it receives it successfully and loads the URL but when i press the back button my game starts f…
Yep i did indeed, but the above fix didnt do the trick because it was still looking to POST not GET, Therefore i kept searching and came across this
http://answers.unity3d.com/questions/45152/error-when-creating-http-request-get-request-with.html
An…
When i try to send the header with the WWW i get an Error saying "Error when creating request. POST request with a zero-sized post buffer is not supported."
the code is:
string authString = username + ":" + password;
byte[] buffer = System…
the full URL is http://secretUsername:[email protected]/api/leaderboard/1/3/10
therefore url = 54.200.118.108/apiand commandToExecute = /leaderboard/1/3/10
and i can assure you that the secretUsername and secretPassword do not contain an…
Hi Tim,
Im doing a simple GET and i get a java.io.filenotfound, below is my code for the GET call
WWW www = new WWW("http://" + username + ":" + password + "@" + (url+commandToExecute));
yield return www;
if(www.error != null){
//Error
}el…