I'm trying to find out the 'type' of a post from a users feed. I'm currently using this code on iOS and the Open Graph API. I don't see a way to determine the type of one of the posts (status, photo, event, etc). The FQL method seems to show these but the 'type' field sometimes returns null (which seems to be a known issue). Is there a way to get the type of a post from the Open Graph API?
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);
}];