Get Google AuthSub Token from Android App

I'm writing an Android program that needs to interact with google docs, so I looked at this sample, but it uses the AuthSub token. How can I get AuthSub token from Android app?

+3


source to share


1 answer


To access Google Docs or any other Google service (or any other OAuth based service) you will need to find an OAuth based authentication method, after which you can get a secure token that you can use to access the service based on user credentials ...

There are some really good examples to get you started:



For something specific to Google Docs see

+3


source







All Articles