Unable to get a specific value on a JSON object
问题 I'm using the Facebook Javascript SDK to get inbox messages and so far I was able to get them and the transform it to a JSON object function getMsgs() { FB.api( "/me/inbox", function (response) { if (response && !response.error) { var result = JSON.stringify(response); document.getElementById("msgs").innerHTML="<pre>"+result+"</pre>"; } } ); } And what I end up getting is something like this: { "data":[ { "id":"15986833470221166", "to":{ "data":[ { "id":"7888047207869023", "name":"My Name" },