How to generate Dropbox access token without logging in button.
I have created method to setup oauth2. However it demands to login every time to get a new access token and to refresh oauth2 after every 4 hours. I want to automate this process.
How to generate Dropbox access token without logging in button.
I have created method to setup oauth2. However it demands to login every time to get a new access token and to refresh oauth2 after every 4 hours. I want to automate this process.
Copyright © 2021 Jogjafile Inc.
Oauth2 access token can be refreshed using a separate API call, using refresh token. Refresh token is long lived, while access token is short lived.
You can regenerate access token every time you need it, from within code, rather than using the logins.