In my app users can register/login using OAuth2 via Facebook and Google. When a user logs out, I also give them the option to logout of their OAuth provider (e.g. in case they're on a public computer).
In the case of Google I do this with the following JavaScript
var img = new Image();
img.src = 'https://accounts.google.com/Logout';
Is there an equivalent solution for Facebook? I've seen this suggestion, but ideally I'm looking for a client-side solution which does not require knowledge of the access token (which I keep on the server-side).
I'd also prefer not to have to include the Facebook SDK if possible.