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.

The facebook OAuth dialog redirects back to the provided redirect_uri without prompt if the user has previously approved access to the application and provided all permissions ...

I want to overwrite that behavior and force the dialog to ask the user again for permissions ...

wonder if this can be done, since the documentation provide no help on whether this is doable or not.

share|improve this question
update: it seems there is no real solution to this, facebook simply doesn't provide this functionality ... – Ahmad Nassri Mar 10 '12 at 8:40

3 Answers

You can call auth.revokeAuthorization. Don't worry that it says the rest api is deprecated as there currently isn't a graph api method for this and I don't think they will remove it until there is one.

share|improve this answer
that would mean i have to know who the user is before calling the revoke resource, which doesn't work, since I'm using this as a login replacement... – Ahmad Nassri Sep 28 '11 at 4:18
The graph API equivalent of this is a DELETE request to /USER_ID/permissions with the user or app access token – Igy Feb 10 '12 at 16:58

I haven't used OAuth with facebook API but if I understand your question properly this is one way you can do it:

without prompt if the user has previously approved access

When facebook redirects back the user to your application (redirect_uri), you can see that the authorization grant is missing and by that you can judge that the user did not approve your request.

force the dialog to ask the user again for permissions

Then you can make another request for new token, but with limited token permissions (limited scope access, because obviously the user did not approve your previous scope request) and the user will be asked again to approve your request with the new set of permissions. This is the way I would do it, and I think this is the way that most of the application do it when the user first rejects their request.

  1. You request a lot of user data - the user denies and is redirected back
  2. You request limited user data - the user may approve this time or can reject again
  3. You can repeat this process as long as you don't think your users will be annoyed :)
share|improve this answer

Why would you want to do this? Getting users past the permissions stage is a critical step that often loses you a lot of traffic. When the pop up is shown, is managed completely by Facebook anyway, so it's not possible to ask someone to accept permissions when they have already done it. The only time they would see the request again is if they first revoke the permissions, or if your app increases the level of access being requested.

share|improve this answer
I want to do it for my own personal sanity as I'm developing, also as an option for some users, like the ones who are really concerned about security and would like to see every step, also for the older generation that are barely familiar enough with facebook itself .. – Ahmad Nassri Sep 28 '11 at 4:16
also, I'm using facebook as a login replacement, every other service provider that offers the same feature, all prompt the user again to approve and login (twitter, linkedin) facebook just breaks the rule. – Ahmad Nassri Sep 28 '11 at 4:17
2  
ok. What you actually mean then is that you want to re-prompt for authentication every time, not for permissions? They are very different things. You can read on re-authentication using the info here: developers.facebook.com/docs/reauthentication – Abby Sep 28 '11 at 7:18
I mean exactly what the Twitter Authenticate flow works as, the Reauthentication you pointed out simple prompts the user to login to facebook every time, I just want the user to be prompted with the permissions screen everytime ... – Ahmad Nassri Oct 11 '11 at 20:56
ok, well you cannot do that. Facebook have complete control over this, so if a user has already agreed to let an app use their data, they don't repeatedly ask each time they try to use the app. – Abby Oct 12 '11 at 11:24

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.