I'm calling a REST webservice and getting JSON format as a result. I'm calling rest service from another domain than mine. How can I parse this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
or use jQuery
if you need only parsing jQuery also can do this:
|
|||
|
|
|
To answer the question you asked: There is a long list of parsers, including several for JavaScript, at the bottom of http://json.org/ If your question is actually: "How can I read JSON data from another domain with client side JavaScript in the browser?", then you can either fetch it using a proxy on the same domain as the page, or you can provide the data using JSON-P instead. |
|||
|
|
|
Are you getting the json result? Most implementations have protection agains cross site scripting and will only allow a request back to the original host of a page. Could you please post some example code for your current implementation. |
|||
|
|