Hello,
I'm building a web app using Dropbox API, that app may be use to share some files to people that does not have a dropbox, so I created a share link via the API and then I want those people to be able to download it directly from the app.
I need the file to be download in the app because the file has to be manipulated before being downlodable by the uer.
What I tried was to use the share link and make an XHR request with the share link replacing the query parameter ?dl=0 by ?dl=1.
Buty obvioulsy this can not work because dropbox does not let me download it because of the CORS policy.
Can you tell if it is possible to download a file without being connected to dropbox and directly from my web app ?