facebook api getting full posts with > 2 comments or > 4 likes

Posted by ejang on Stack Overflow See other posts from Stack Overflow or by ejang
Published on 2012-10-17T04:57:27Z Indexed on 2012/10/17 5:00 UTC
Read the original article Hit count: 201

when I make the user/feed request on the Facebook Open Graph API, I get a feed object where posts with > 2 comments or > 4 likes don't reveal the detailed information for those specific comments.

I am using https://github.com/Thuzi/facebook-node-sdk to make requests but it is very similar to the 'request' NodeJS library.

I can get the full posts individually by making a separate request for that post's Open Graph ID, but this doesn't lend itself to fun code because requests are asynchronous and nesting more asynchronous calls within asynchronous calls doesn't lend itself to fun code.

Any way I can obtain the full posts?

© Stack Overflow or respective owner

Related posts about facebook

Related posts about node.js