I am trying to get all the user photos. I have used the limit as 0.
[facebookInstance requestWithGraphPath:@"me/photos?limit=0" andDelegate:self];
I still get only 32 records. I see that I have more than 32 photos.
I have the following permissions:
permissions = [[NSArray alloc] initWithObjects:@"read_stream",@"user_photos", @"friends_photos", nil];
Thanks!