views:

55

answers:

1

Maybe someone can't help me.

I use the last FBConnect (http://github.com/facebook/facebook-ios-sdk/) for Facebook connexion. And I retreive the list of photos albums for the user.

NSMutableDictionary* params = [NSMutableDictionary NictionaryWithObjectsAndKeys:_facebook.accessToken,@"access_token",nil];
[_facebook requestWithGraphPath:@"me/albums" andParams:params andDelegate:self];

I'm testing with 4 differents account with all the same rules for privacy (Account/Privacy settings). And for some of them the albums list is empty ? And if i test via a webbrowser on a desktop computer (https://graph.facebook.com/me/albums) for account who doesn't work on iphone, the list is not empty ?

On iphone, i use graph api or FQL with same results ("SELECT aid FROM album WHERE owner = me()")

Maybe i miss some think about configuration off the facebookapp ?

Thanks for answer.

A: 

I resolve the solution with good settings for facebook authentifications http://developers.facebook.com/docs/authentication/permissions

rubijn