Speech Recognition icon Speech Recognition Windows Speech Recognition skill: detect custom phrases via PC mic, trigger configurable scripts/actions with adjustable confidence. Try it →
 

Parse JSON

The JSON javascript class is included in the ARC javascript compiler. You can parse the JSON in javascript directly in ARC.


Here's an example parsing JSON from a string...

Code:


var resp = '{ "glossary": { "title": "example glossary" } }';

var myObj = JSON.parse(resp);

print (myObj.glossary.title);



And here's an example of getting JSON from an HTTP get request...

Code:


var resp = Net.hTTPGet("https://ip.jsontest.com/");

var myObj = JSON.parse(resp);

print (myObj.ip);