Hi,
1. When I created my app account I saw a field named "Secret Key", where should I use it?
2. When I tried to use the:
.tokenRevoke();
command it didn't really logged out of the Dropbox account, the evidence for that is that right after sending this command I could call the method:
Auth.getOAuth2Token();
and get a valid token key from it that I could use to create a valid client with. It did logged out ONLY after I wrote:
AuthActivity.result = null;
So I just wonder why isn't it documented anywhere? and also why the:
.tokenRevoke();
command doesn't do that internaly?
Thanks.