I have been trying to use Fql query to show all comments for a post.at first i show 2 posts then when 'show more comments' clicked i show next 50 comments,this way it continues.when 'show more comments' i execute following by ajax call to graph api with -
SELECT text,post_id FROM comment WHERE post_id=post_id limit 50
but say when i first click 'show more comments' it shows 52 comments,then when i click again it shows around 102 comments.but for next clicks 152 comments not shown.its stays in around 102 comments.
my target -
1st click to 'show more comments' = show 52 comments starting from first comments(limit value = 52 i specify in query )
2nd click = show 102 comments starting from first comments(limit value=102)
3rd click = show 152 comments starting from first comments(limit value=152) ......continues
so i am not able to achieve this.I really tried many ways using offset too.lots of problems.Are there facebook bugs? kindly help asap.