-
Notifications
You must be signed in to change notification settings - Fork 217
add save_token feature #71
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
base: master
Are you sure you want to change the base?
Conversation
|
Thanks for the PR! Could you please explain what problem is being solved for most users of |
|
Hi, in my use case, I need to develop shell script to schedule email fetching. I need to persist token info between different runs avoiding to refresh token until expires. I would like to delegate all the oauth2 stuff to this script. I need to save both tokens because the |
|
Thanks for the explanation! In that case, I'm not sure why the existing |
angelalarabanda
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Entrar
| import urllib.parse | ||
| import urllib.request | ||
|
|
||
| import os |
This comment was marked as duplicate.
This comment was marked as duplicate.
Sorry, something went wrong.
| import urllib.parse | ||
| import urllib.request | ||
|
|
||
| import os |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
Implemented new feature to allow saving of tokens to current working directory for later use (e.g. use in script).