Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by OrenGer · Feb 17, 2015 at 05:39 PM · jsonhttphttps

Json Post to https

Hello guys. i am a new in community and working on a game that needs to add images thru url. the url has authorization in JSON format.

 //downlaod object
         WWWForm wwf = new WWWForm();
         wwf.AddField("username", username);
         wwf.AddField("password", password);
         www = new WWW(urlPost, wwf);
         StartCoroutine(WaitForRequest(www));
         //
 
     }
     
     //
     IEnumerator WaitForRequest(WWW www)
     {
         yield return www;
             // check for errors
             if (www.error == null)
         {
             Debug.Log("WWW Ok!: " + www.data.ToString());
         } else {
             Debug.Log("WWW Error: "+ www.error);
         }    
     } 

i dont understand how to add JSON to the post request and if i even send the request! i also need to get response after i log in .

ive been going ccrazy online trying to find a sulotion or a guide but non helped me so far and im doing it 5 hours already please help me

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image fafase · Feb 19, 2015 at 05:51 PM 0
Share

$$anonymous$$aybe see this one http://forum.unity3d.com/threads/www-wwwform-to-post-json-data-to-server-solved.57490/

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Sciandra_Leva · Feb 16, 2016 at 04:01 PM

I just saw your post, I'm sorry being almost an year late but maybe it can help somebody else.

I suggest you to not use WWW but, instead

 // the actual call, in a try catch
         try 
         {
             using (var client = new WebClient())
             {
                 client.Headers[HttpRequestHeader.ContentType] = "application/json";
                 result = client.UploadString(login_url, "POST", json_string);
             }
         }
         catch (WebException ex)
         {
             Debug.Log("exception: " + ex);
             var response = ex.Response as HttpWebResponse;
             if (response != null)
             {
                 Debug.Log("HTTP Status Code: " + (int)response.StatusCode);
             }
 
             switch ((int)response.StatusCode) {
             default:
                 Debug.Log ("OH SHIT");
                 break;
             }
         }

This way you should be able to POST to any url, even https (not really sure about it though). To produce the JSON string an easy way is to use a library, like SimpleJSON for unity.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by RMGK · Mar 13, 2019 at 11:56 PM

See answer here: https://answers.unity.com/questions/1491938/sending-an-http-post-request-with-json-body.html?childToView=1612281#answer-1612281

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

http request over an https webgl 1 Answer

C# - Read JSON 1 Answer

How do I send data to a cloud server like Amazon EC2? 1 Answer

Is there a library or package for HTTP communication with a server? 1 Answer

Unity WWW Warning Message in Xcode 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges