-
Notifications
You must be signed in to change notification settings - Fork 39
Description
Why is this feature valuable to you? Does it solve a problem you're having?
The OAuth2 flows are not implemented in this SDK. I understand that we can use client_id and client_secret to exchange an auth_token to get the access_token & use it to init the dropbox-handle on which we perform all the operations.
But how about refreshing the access_tokens? I see that equivalent flows exist in Python SDK https://github.com/dropbox/dropbox-sdk-python/blob/main/dropbox/oauth.py
Describe the solution you'd like
Equivalent to OAuth2 flows in Python SDK https://github.com/dropbox/dropbox-sdk-python/blob/main/dropbox/oauth.py
Describe alternatives you've considered
I could manually write the OAuth2 flows in my application but its generic enough to add it to the SDK here.
Additional context
None