Have got authorisation via login working, :-) but am having issues when re-using the token (i.e. bypassing having to login again). I'm getting...
Exception thrown: 'Dropbox.Api.AuthException' in Dropbox.Api.dll
Exception thrown: 'Dropbox.Api.AuthException' in System.Private.CoreLib.dll
...after a DropboxClient(token) call. I've checked, and the token is successfully retrieved and passed on to the DropboxClient call, and the assignment to DropboxClient is succesful (i.e. pointer isn't null, and I can successfully run a .tostring() on it), just when I try to do something useful with the client I get this Auth exception. :-(
I was expecting that re-using a token would work (same as with you normally only have to login to Dropbox once on each device youinstall it on) - is that not the case? If so, I'm not sure why it's not working in this case. I can get around it by logging in every time, but obviously that is quite annoying. Hoping you can help me get this token working more than once?