1. My JSP obtained an initialToken by
<%
String authReqUrl =
AuthSubUtil.getRequestUrl(
callBackLocation,
"http://spreadsheets.google.com/feeds",
false,
true);
%>
<script>
location.replace("<%=authReqUrl%>");
</script>
2. Which was successfully exchanged for a session token thro
SessionAuthToken =
AuthSubUtil.exchangeForSessionToken(
initialToken, null);
3. Then I tried revoking the session token by
AuthSubUtil.revokeToken(SessionAuthToken, null);
But the response was 403 failure.
Which means my token is stuck in limbo, right?
What are the possible causes that I failed to revoke a session token?
Any advice?