I am pulling data down from a webservice and it is formated as JSON. I am writing a google apps script for google spreadsheet that will populate the data form me. my problem is, I can't seem to get it to parse out.

doing:

var dataset = myJSONtext;
Browser.msgbox(dataset.item[0].key); 

errors out, saying item[0] is not defined.

Is there some built in way I should be doing this?

Any help would be apreciated.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 8 down vote accepted

Try Utilities.jsonParse.

link|improve this answer
1  
+1 The jsonParse() method was added in August 2010 and it should be used instead of eval() or copy/pasted scripts. – Alexandre Jasmin Oct 18 '10 at 22:05
Thanks! Its about time they added that. – Jeremy Petzold Nov 11 '10 at 22:45
suggest that for sake of Google's juicy-ness this comment needs to be promoted as the accepted answer. – justSteve Jun 3 '11 at 1:18
feedback

For those who are seeing this in 2011+, as pointed out by Henrique Abreu at the Google support forum, http://www.google.com/support/forum/p/apps-script/thread?tid=0df7cb3a7280dae6&hl=en, Utilities.jsonParse is/will be deprecated. As you can see from the thread, there's a bug with this function that it does not work when your keys are numbers, ie "1234".

As suggested, you should be using JSON.stringify/parse.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.