我有一个在某些事件上调用的 api。该 api 也适用于 Web 平台和 Editor,但不适用于 iOS 设备。这是我调用api的代码:
string data = "{'UserName':'myUserName'," + "'Password':'myPass'}"; var encoding = new System.Text.UTF8Encoding(); var header = new Hashtable(); header.Add("content-type", "application/json"); header.Add("content-length", data.Length); Debug.Log("Time To Hit the api"); ////Now below is the api I am hitting//// WWW responseToken = new WWW(someLink, encoding.GetBytes(data), header); yield return responseToken; Debug.Log("Now get the response");
好吧,我也需要这个 api 在我的 iOS 设备上工作。在 iOS 设备上,当此代码运行时,它会打印日志语句“Time To Hit the api”,但从不打印“Now get the response”日志。
请在这里帮助我,我在这里做错了什么?