So, my target platform is android, and I’m using unity’s WWW class to try and send data, a string and an integer, but the service is never receiving the data. I’ve tried two methods, and they are as follows:
WWWForm form = new WWWForm();
form.AddField("username", playerName);
form.AddField("score", playerScore);
WWW connection = new WWW("http://www.webdomian.com/directory/directory/webservice.php", form);
and I’ve tried:
WWWForm form = new WWWForm();
byte[] namedata = Encoding.ASCII.GetBytes(playerName);
byte[] scoredata = Encoding.ASCII.GetBytes(playerScore.ToString());
form.AddBinaryData("username", namedata);
form.AddBinaryData("score", scoredata);
WWW connection = new WWW("http://www.webdomian.com/directory/directory/webservice.php", form);
I’ve also tried those methods sending form.data instead of form, but to no avail.
The playerName, playerScore are both defined properly, and the dud web address is a real functioning address.