I'm creating an app that help user download their from from their cloud drives (Dropbox, Google Drive). I create an download manager to let user download, pause, resume, eta, speed...
So, how can I get the direct download link to a file in Dropbox to download it with the granted access token?
With Google Drive, I can by setting the request header
"Authorization" to "Bearer <access_token>"
I read the Dropbox API but could not find any info about this. I don't use the API to create file shared link, because when loading the files list for user to choose to download, create share link for all of them are impossible (take long long time) and users don't want to share files.
Please help!