I am trying to revoke a token using the Google Api client side code.
My code looks something like this:
$.get("https://accounts.google.com/o/oauth2/revoke?token=" + accessToken, function () {
window.location.reload();
});
And I am getting the following error?
XMLHttpRequest cannot load
https://accounts.google.com/o/oauth2/revoke?token=tokenishere Origin
http://balblabla.com is not allowed by Access-Control-Allow-Origin.
Following on from @krg’s comment:
I have done this on the server side, using the same code:
which works.