Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I Would like to know why facebook have 2 Oauth dialog box for app?

Here is the one I had done

https://www.facebook.com/dialog/oauth?client_id=118927541622479&redirect_uri=https%3A%2F%2Fapps.facebook.com%2Fserveroauth%2F&state=19e718c4a3edd44364473712d5015f2c&scope=publish_stream

and this the one I wish to setup where there is no prompt for 2nd page extended permission:

https://www.facebook.com/dialog/oauth?_fb_url=oauth%2Fauthorize&client_id=310557279950&display=page&redirect_uri=http://apps.facebook.com/pogogames/%3F%26k_type%3Dinstall%26authorized%3Dtrue&scope=email
share|improve this question

closed as not a real question by CBroe, Igy, hohner, Werner Vesterås, JaredMcAteer Feb 19 at 20:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You are probably getting 2 OAuth dialogs because you are asking for two different permissions on the different pages. Just because you request permissions for one thing does not mean you get permissions for another just because the user clicked 'Ok' on the first. You should ask for all relevant permissions for the whole of your 'app' up front.

share|improve this answer
I asking for Oauth for single page where my extended permission just about get user's publish_stream but couldn't figure it out how to do like the 2nd one I wish. In the facebook developer tutorial page it had clearly said all extended permission will prompt for 2nd page request but I see many apps is like the 2nd URL I show above only 1 page of request. – Jean Gollnick Feb 19 at 16:43

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