On a single threaded app, how can I do this properly? I'm modifying an app which already has a a central queue system implemented but when I queue up the login + read perms and then the publish perms, the user gets the following UI:
1) needs permission to read this info . Buttons presented: Log In & Cancel. User hits Log In.
2) This then shows up: needs permission to publish this info . Buttons presented: Log In & Cancel User hits Log In
3) App, due to the queue, has now dequeued completely because the above two prompts were dismissed. Keep in mind that the user has not yet logged in! App throws an error in the form of an alert (expected behaviour if you get to this stage without being logged in).
4) After dismissing alert, user can see the facebook popup for login. Looks like a mini safari window inside my app. After logging in, the user is presented with another permissions page that they have to hit okay to. The okay button just activates but doesn't bring the user to my app.
And that's it.
It looks like this isn't the right order of popups. I would expect the login screen at 4) to show up after 1) so the user logs in. And THEN I would expect the permissions prompt that I saw in stage 2).
So how do I get the behaviour that I want?