views:

94

answers:

1

I am using the Facebook JavaScript SDK. I am able to get the user's information using:

FB.api('/me', function(response) {
  ....
}); 

I get the user's friends using:

FB.api('/me/friends', function(response) {
 ...
}); //.. it only has two values name and id.

I want to get friends Date of birth and location. Is there a FB.api method to get it or can I get it using FB.Data.query?

A: 

I barely know anything about FB API but have you looked at this: http://developers.facebook.com/docs/reference/javascript/FB.Data.query
And this:
http://developers.facebook.com/docs/reference/fql/

giddy