I'm developing an app. which can run as both a web-page and an iPhone App. When I log out of Facebook having authorised the App. I'm presented with the Permissions screen again even though the user has already accepted these permissions.
The URL for the request ends up as this:
https://m.facebook.com/dialog/oauth?
response_type=token&
scope=user_photos%2Cfriends_photos&
client_id=[APP_ID]&
app_id=[APP_ID]&
api_key=[APP_ID]&
redirect_uri=fb[APP_ID]%3A%2F%2Fauthorize&
sdk=ios&display=touch
Which is very similar to another popular App. on the App. Store (I checked the URL they created as it worked correctly). If I put the URL above into the browser I get the same behaviour from Facebook Authentication, i.e. Log-in screen, then Permission Screen with no new permissions mentioned.
This would hint that I'm setting up the App. incorrectly on Facebook perhaps, but I can't for the life of me see where. The premissions/authenticated referrals section both include the [?]_photos scope.
I can see that a similar issue has been raised before: Does the Facebook iOS SDK require the user to authenticate every time they use the app?, but there looks to be a section in the FacebookConnectPlugin.m which retrieves the Token and Expiration date from user defaults in the fbDidLogin section.
By the way, I'm using Cordova 1.7 and the Facebook Connect plug-in from GitHub/davejohnson.
I can't seem to prove whether the issue is with the URL, Facebook App. settings or the Cordova Facebook connect code.
I did see another issue raised recently which could be the same: facebook auth: user being asked permissions again inspite of approving it once but there wasn't much information provided.
Any help or hints of where to look would be appreciated.