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.

Basically I want to check the extended permissions the user has granted my app. If any one permission that I want is not given by the user, Then I want the user to be redirected to facebook permission Dialog(Not the oauth dialog which comes first). Is it possible to do that using php or js sdk(php preferred).

share|improve this question

1 Answer

up vote 2 down vote accepted

Then I want the user to be redirected to facebook permission Dialog(Not the oauth dialog which comes first).

First of all, there’s a misunderstanding on your side here: That is only one dialog, it’s only split into two pages where appropriate.

So when asking for (more) extended permissions, you just call the OAuth dialog the normal way (getLoginURL in PHP SDK, FB.login from the JS SDK) – if the user has already authorized your app and only new extended permissions are required, then only the second page of the dialog is shown automatically.

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.