Question

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

Was it helpful?

Solution

That permission scope is called offline_access.

OTHER TIPS

the offline_access will no longer exists

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top