Data pass using POST method - WebRequest object

2019-09-10 12:54发布

I want to use POST method to pass data over web server. I want to retrieve data provided by web server in JSON format. I have used following code by referring Unity Manual.

 void Start ()
 {
     StartCoroutine (LoadLoginInfo ());
 }

 IEnumerator LoadLoginInfo ()
 {
     Debug.Log("Load Login Info");

     WWWForm form = new WWWForm ();
     form.AddField ("username", "admin");
     form.AddField ("password", "Admin123#");

     UnityWebRequest www = UnityWebRequest.Post (url, form);
     yield return www.Send();

     if (www.isError) {
         Debug.Log (www.error);
     } else {
         Debug.Log ("Data: " + www.downloadHandler.text);
     }
 }

But after certain amount of wait, I am getting following message in console.

enter image description here

If I try similar thing in browser then it works perfectly.

enter image description here

So what is the correct way to use POST method using WebRequest object?

0条回答
登录 后发表回答