Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After finishing my project I want to share it as an *.ipa. Before doing so, I want to check if the Facebook Login thing works.

Until now, I'm always logged in with my Facebook account.

So: Is there a way to reset the Facebook permissions for my iPhone that I can simulate a clean install on my iPhone?

Thanks.

share|improve this question
You have to delete that permissions given for that app in facebook site only. setting for that app will be in account or privacy settings in facebook site – R.A Apr 6 '12 at 10:43
In addition to what @RA said, you'll probably want a clean install of your app as well – Jayson Lane Apr 6 '12 at 12:23
Could you maybe write this as an answer that I can accept it? Thanks – DAS Apr 6 '12 at 13:37

1 Answer

up vote 1 down vote accepted

you can reset permission by calling below methods.

- (void)fbDidLogout {

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[facebook invalidateSession];
[defaults removeObjectForKey:@"FBAccessTokenKey"];
[defaults removeObjectForKey:@"FBExpirationDateKey"];
[defaults synchronize];

}

This may force user to re login for facebook.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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