Google’s finance API returns something that’s almost JSON, but isn’t:
{lhs: "1 U.S. dollar",rhs: "0.636658815 British pounds",error: "",icc: true}
I’m sure this is a valid format, I’m just not sure which. What is it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s a regular JavaScript object. It can be handled with any JavaScript parser.
Very similar to JSON, but not exactly. If it were JSON, there would be quotes around the keys.