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.

I am using FQL to fetch data from Facebook graph API.When i give a get request via jquery to Facebook, I get the response data in the call back function but,when I tried to process it,i found that the response is treated as a string(I am not able to iterate through it considering it as dictionary) but firebug log shows the following json data.

console.log(response);

RESULT:

{
  "data": {
    "fql_search_result": [{
      "aid": "xxxxx",
    }, {
      "aid": "xxxxx",
    }, ]
  }
}

I got error saying response has no attribute data, when i did this

console.log(response.data)

Why is the data treated as string and not as dictionary?

share|improve this question

2 Answers

up vote 1 down vote accepted

Did you give the dataType as 'json' in the request that you made via jQuery?

dataType:'json',

Alternatively you can try using the jQuery short hand function for AJAX GET Requests which has dataType as 'json' by default.

jQuery.getJSON("https://graph.facebook.com/fql?q=SELECT+name+FROM+user+WHERE+uid+%3D+me+%28%29&access_token=<access_token>", function(data){
    console.log(data);
    console.log(data.data[0].name);
});
share|improve this answer

try parsing it in json object by using JSON.parse and then access your values

var YourJsonObject = JSON.parse("Your String");
share|improve this answer
I think even eval would do that.but, firebug shows it as json object . Why is jquery treating it as string? – Never Back Down Aug 31 '12 at 7:36
1  
My question would rather be – why are you using jQuery to talk to the API, and not the JS SDK? – CBroe Aug 31 '12 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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