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 accessing the Facebook Graph JS API, in order to display some of the user's favorite movies, music and so on. Now I want to access all the restaurants a user has liked. I didn't find anything in the API-doc, that this is supported. So I think about parsing all the likes of a user like this:

   FB.api('/me/' + 'likes' + '?access_token+' + accessToken,
       function(response){
          for(var k=0; k<response.data.length; k++){
             // Do some stuff with the data
          }
    });

Is this the only solution or do you know something else?

How would you code this solution?

share|improve this question

1 Answer

up vote 1 down vote accepted
   FB.api('/me/likes?limit=5000&access_token=' + accessToken,
       function(response){
          var restaurants = [];
          for(var k=0; k<response.data.length; k++){
             // Do some stuff with the data
             if(response.data[k].category=="Food/beverages")
                 restaurants.push(response.data[k]);
          }

    });
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 22:54

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.