try the following code ..... provide a limit
NSString * pRequestString2 = [NSString stringWithFormat:@"me/statuses?limit=100%@",[FBSession activeSession].accessToken];
[[FBRequest requestForGraphPath:pRequestString2] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"%@",result);
}];
or
try this ....
NSString * pRequestString1 = [NSString stringWithFormat:@"me/feed?%@",[FBSession activeSession].accessToken];
[[FBRequest requestForGraphPath:pRequestString2] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"%@",result);
}];
make sure you have proper permissions .....