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 want to find all the feeds with comments an also the profile image of the the user who commented on the posts. I found that it can be done through batch request. Now i am doing like this which fires lots of API request.

@facebook = FacebookToken.find_by_id(token.id)
@graph = Koala::Facebook::API.new(@facebook.access_token)
@results = @graph.get_connections("me", self.content)
@results.each do |post|
     post['comments']['data'].each do |comment|
         commnentor_image = @graph.get_picture(comment["from"]["id"])
     end
end

How can i get these into a single batch request so that it will give me all the posts with comments with the commentor image.

Thank's

share|improve this question
did the answer help you? – abhir Jan 29 at 3:36

1 Answer

The batch request will definitely speed up your queries, but I would consider looking at FQL as well - FB documentation states that an FQL multiquery is even faster than batch queries! Better yet, you can batch your FQL multiqueries....

You can try this for the batch (see the Koala Wiki for more info) :

@graph.batch do |batch|
   r = batch.get_connections("me", self.content)
   r.each do |post|
      post['comments']['data'].each do |comment|
         commnentor_image = @graph.get_picture(comment["from"]["id"])
     end
   end

Check out the FQL docs for more info...

To get you started:

@graph.fql_multiquery(SELECT .....your FQL Query)
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.