I do as the Facebook Developers website, below are my codes,

fbPermissions = [[NSArray alloc] initWithObjects:
                @"email", @"user_birthday", @"user_hometown", @"user_location", 
                @"user_work_history",@"friends_hometown", @"friends_location",
                @"friends_work_history", @"publish_stream", nil];
[delegate.facebook authorize:fbPermissions delegate:self];

I thought it works like this:

  1. If you aren't login, it shows login dialog then redirect to auth dialog (which contains Allow/Don't Allow buttons below), to need some permissions. The auth dialog may like this.
  2. If you are login, it skips login dialog and shows auth dialog.

but my problem is It doesn't show the auth dialog to need some permissions. Why? please help me if you knows. thank you.

PS. My English is poor so I doubt if you are clear about my question.

link|improve this question

41% accept rate
Have you ever seen the permissions dialog with your application? In many cases this will only appear the first time. Are you testing on a device with the Facebook iOS application installed or are you authenticating through Safari? – dtuckernet Aug 4 '11 at 11:51
You are right! In iPhone simulator it never shows permissions dialog, but in device, it shows. Thank you. – Smeegol Xie Aug 5 '11 at 13:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.