I'm currently using this piece of code to get a users feed from Facebook:
FBRequest *friendsRequest = [FBRequest requestWithGraphPath:[NSString stringWithFormat:@"%@?fields=cover,first_name,last_name,relationship_status,feed", self.friendID] parameters:[[NSMutableDictionary alloc] initWithObjectsAndKeys:@"en_EN", @"locale", nil] HTTPMethod:nil];
[friendsRequest startWithCompletionHandler: ^(FBRequestConnection *connection,
NSDictionary* result,
NSError *error) {
postsArray = [[NSMutableArray alloc] initWithArray:[result valueForKeyPath:@"feed.data"]];
[tableView reloadData];
NSLog(@"Data found: %@", [result description]);
NSLog(@"Posts: %i", postsArray.count);
}];
However, this 'feed' also includes things like 'XXX on his own post' or 'User A liked Post B' and I'd like to get just what the user has posted and what others have posted onto his wall (like if you go to a user timeline on facebook.com or in the iOS apps). Is that possible? If not, how can I found out if a status is a 'like' or 'commented on...'?