I am successfully using a GET request to this URL
https://www.facebook.com/logout.php?access_token=ACCESS_TOKEN&confirm=1&next=MY_APP_URL
where MY_APP_URL is of the form https://apps.facebook.com/MY_APP_NAME to force users to log out of Facebook and be redirected back to my app.
However, the UX in the browser is less than ideal. First, it looks like it redirects to MY_APP_URL, and the email / password fields appear in the upper right for about a second. Then, there's a redirect to login.php and the full page login form appears.
Everything functions correctly with respect to the logout/login, but this 1-2 second display of a different login form is annoying.
Is there a way to streamline this so that there is only one redirect, directly to the login.php URL?
Perhaps I should use the 'oauth/authorize' URL as my next instead of https://apps.facebook.com/MY_APP_NAME?