Is it possible to request an auth token using AccountManager for more than one service at the same time?
Basically I need access to both the Google Docs API (writely) and the Spreadsheet API (wise).
I tried with a space ("writely wise") and with a comma ("writely,wise"), but it doesn't seem to work with either.
From here (http://code.google.com/p/google-api-java-client/wiki/Android) I know that for OAuth 2.0 you can use a space, but the Google Docs API uses ClientLogin and nothing is mentioned there.
If I need to request an auth token for each service separately, what is the best way to go about it? Do I need to invalidate the token each time I need to change service?
The only thing that I need from the Spreadsheet API is to be able to export a spreadsheet as CSV. All the rest that I need can be done with the Docs API.