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
0
Question by ILEGAL · Jul 23, 2014 at 11:52 AM · c#jsonphphttp

C# - Read JSON

I need to read a JSON that is printed in a php file hosted online.

I'm doing this:

 using(WebClient wb = new WebClient()){
 
      var data = new NameValueCollection();
 
      data["email"] = emailUser;
 
      data["idFB"] = id;
 
      var response = wb.UploadValues(url.ToString(), "POST", data);
 
      yield return response;
 }


How can I read a json after doing this in C#?

Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Landern · Jul 23, 2014 at 01:03 PM

Include(or develop your own) a Json library for parsing the Json for consumption by your program. The Unify Community has posted SimpleJson for free for you to use.

You can find SimpleJson here. There are also instructions for inclusion in your project on that same wiki entry.

Edit: You may want to use Unity's WWWForm(to post) class instead of .net's WebRequest

Edit 2: Something like:

 WWWForm form = new WWWForm();
 
 form.AddField("email", emailUser);
 form.AddField("idFB", id);
 
 WWW webRequest = new WWW(url.ToString(), form);
 
 yield webRequest;


You will find your json in webRequest.text, parse that.

Comment
Add comment · Show 5 · 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 ILEGAL · Jul 23, 2014 at 01:05 PM 0
Share

Yes, I know that library, but, my question is how to read the json from the php file? Not parsing it. Thanks.

avatar image Landern · Jul 23, 2014 at 01:10 PM 0
Share

You need to output it, as a response to the web request, you can use echo in php if you want, there are a bunch of ways to do it and it's really a php question and not a unity question.

avatar image ILEGAL · Jul 23, 2014 at 01:14 PM 0
Share

I'm using echo to output. And sorry if I'm not understanding, but, after the echo and before the parse, how do I get the JSON in my C#? Is it with the response var? Thanks again !

avatar image Landern · Jul 23, 2014 at 01:26 PM 0
Share

Opps, sorry about that, i was on my mobile. Encoding.ASCII.GetString(response);

avatar image ILEGAL · Jul 23, 2014 at 04:10 PM 0
Share

Perfect man. Thanks a lot! :)

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

How to send data form to server using json in unity 1 Answer

PHP Image to C# 2D Texture 2 Answers

Json return 405 status code when posting 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