In Twitter for example I can do an HTTP call to their REST API like this:
https://twitter.com/oauth/authenticate?force_login=true&oauth_token=.....
This forces the user to login even if it's already logged in to Twitter.
Facebook has a sort of similar mechanism that works with their JS SDK,
https://developers.facebook.com/docs/howtos/login/client-side-re-auth/
but there's no trace of the '&auth_type=reauthenticate' option in the normal REST API:
http://developers.facebook.com/docs/reference/dialogs/oauth/
Anyone knows if it is hidden, or non-existing there?