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?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data Protocol" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---