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'm playing with a sample app which is meant to show me a filtered version of my facebook stream. I'd like to use the javascript sdk for this, to avoid any extra traffic to my server. Is this possible?

So far I've been experimenting with the likes of:

 FB.api('/fql', {q:query}, function(response) {});

which doesn't seem to be implemented. I'd rather not use the legacy REST api, since, well, it's legacy.

share|improve this question

1 Answer

up vote 1 down vote accepted

This should work:

 FB.api('fql', { q: 'query here' }, function (response)
{
 //Logic here
};

Pretty much, you just need to remove the slash in front of the 'fql'.

share|improve this answer

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.