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.

This is my query for getting the post

 NSString *fqlquery= @"SELECT post_id,message FROM stream WHERE source_id = '100005146987508' limit 10000";
             self.newurl=[NSString stringWithFormat:@"https://graph.facebook.com/fql?q=%@  &access_token=%@",fqlquery,appDelegate.session.accessToken];

it returns

{
   "data": [

   ]
}

It seems we are not getting all the results back. Are we doing anything wrong?

share|improve this question
maybe access token only for Basic Permissions. Try get just Name – CReaTuS Feb 1 at 6:04
NSArray *permissions = [NSArray arrayWithObjects:@"publish_stream",@"offline_access",@"read_stream",@"share_item‌​",@"publish_actions",nil]; [FBSession openActiveSessionWithPublishPermissions:permissions defaultAudience:FBSessionDefaultAudienceOnlyMe allowLoginUI:YES completionHandler:^(FBSession *session, FBSessionState status, NSError *error) { // [self publishStory]; }]; – user1461031 Feb 1 at 7:01
these are the permission which i am using – user1461031 Feb 1 at 7:01
and "graph.facebook.com/fql" is deprecated. Try to us actual request. developers.facebook.com/tools/… – CReaTuS Feb 1 at 7:07

1 Answer

I reproduced this bug. Request

SELECT post_id, actor_id, target_id, message, source_id FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me()) AND source_id='xxx'

returns about 40 rows

Request

SELECT post_id, actor_id, target_id, message, source_id FROM stream WHERE source_id='xxx'

returns only 2 rows

I think you'd add to limits filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me())

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.