i'm developing an application for iOS and for test app, i need clear/reset all facebook permission... how can do this?
if check the permission whit graph path, i see this log
[PF_FBRequestConnection startWithGraphPath:@"me/permissions"
completionHandler:^(PF_FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"facebook_permission: %@",result);
}];
the result is
[6412:c07] facebook_permission: {
data = (
{
"create_note" = 1;
email = 1;
installed = 1;
"photo_upload" = 1;
"publish_actions" = 1;
"publish_stream" = 1;
"share_item" = 1;
"status_update" = 1;
"user_about_me" = 1;
"user_birthday" = 1;
"user_location" = 1;
"video_upload" = 1;
}
);
i want to clear all permission.. it's possible?