-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support the last Google OAuth Library #2
base: master
Are you sure you want to change the base?
Conversation
just use oauth2clien ServiceAccountCredentials is more good solution for handling Credentials
@texib thanks for the pull request!! I think it's a great idea to update the library to support the latest version, but I would prefer if we could make it in a backwards compatible way so that the library still works with the older OAuth library. I believe it won't be too complicated, unless I'm missing something, we would just need to import oauth2client, detect the current version and define the base class of the Credentials class based on it, and modify the init method to take this into consideration. What do you think? |
The current version could not support oauth2client version > 2.0
So i just modify some code that just use the oauth2client util function to get credential
such as below