You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
service.reset() did not remove access tokens, but when I perform: service.getStorage().setValue(null, null); this removes the token. This was under the condition that a user property store was being used.
I see that the token is being stored under the key null: Service_.prototype.saveToken__ = function(token) { this.getStorage().setValue(null, token); };
Testing yields that the token is still present no matter what unless we clear the value directly with the service storage.
The text was updated successfully, but these errors were encountered:
service.reset()
did not remove access tokens, but when I perform:service.getStorage().setValue(null, null);
this removes the token. This was under the condition that a user property store was being used.I see that the token is being stored under the key null:
Service_.prototype.saveToken__ = function(token) { this.getStorage().setValue(null, token); };
Testing yields that the token is still present no matter what unless we clear the value directly with the service storage.
The text was updated successfully, but these errors were encountered: