in some applications, I see "Access my data any time" when I give the permissions to the iphone application, how can i do that with facebook-ios-sdk ?

 NSArray *permissions = [[NSArray alloc] initWithObjects:
                                @"user_likes", 
                                @"read_stream",
                                @"user_birthday",
                                nil];
        [[delegate facebook] authorize:permissions];

In my code I wrote that but I have to leave the one to one when I want to have all permissions

enter image description here

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

That permission scope is called offline_access.

link|improve this answer
feedback

the offline_access will no longer exists

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.