We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

sgvincent's avatar
sgvincent
New member | Level 2
2 years ago

Upload Files to Shared Folders via Zapier Integration

Within the Zapier integration, there is the ability to upload to Dropbox but not a Shared folder in Dropbox. After reading through the current API documentation it doesn't look like there is a progra...
  • Greg-DB's avatar
    Greg-DB
    2 years ago

    New Dropbox access tokens are short-lived and expire after a short period of time, but refresh tokens do not expire and can be stored and re-used repeatedly. Once you have a refresh token for an account, you do not need to do the https://www.dropbox.com/oauth2/authorize... step for that account again; you can instead programmatically use the refresh token to get a new access token without manual intervention.

     

    You can find more information in the OAuth Guide and authorization documentation. There's a basic outline of processing this flow in this blog post which may serve as a useful example.