There are similarities (in authentication and several other operations, for example, both can get a list of documents), but what are the differences? Why both of us?
I am learning gdata api and I realized that I can log in using the OAuth access token this way (using DocsClient):
self.client = gdata.docs.client.DocsClient() self.client.auth_token = gdata.gauth.OAuthHmacToken(consumer.key, consumer.secret, user.access_token.key, user.access_token.secret, gdata.gauth.ACCESS_TOKEN)
but I donβt know how to do the same with DocsService.
source share