Hello all,I want to download files from a dropbox account and upload it to my s3 bucket. Any idea how do I proceed ?
The Dropbox API doesn't offer any S3 specific functionality, but in general, to download a file via the API, you use the /files (GET) endpoint:
https://www.dropbox.com/developers/core/docs#files-GET
You can then upload the data elsewhere as necessary.