You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

Asharaf's avatar
Asharaf
Explorer | Level 4
2 years ago

Shared link

Hi Support Team,   I'm developing a module to download publicly shared files or folders and tried it with multiple APIs but have not succussed.  I've created an App in the console and have Appke...
  • Здравко's avatar
    2 years ago

    Hi Asharaf,

    To create shared link(s) to either file(s) or folder(s) you can use corresponding methods. For an idea in Python, you can take a look here. Every received link, in such a way, points to preview page (not the actual file or folder)! To download pointed content, you need to 'transform' preview link to download link. Just replace the ending parameter (dl) value from 0 to 1 (i.e. replace ending "?dl=0" to "?dl=1") and you can download using whatever method convenient for you. One more thing you should take in mind is that your web client should support redirection (codes 3XX - that Dropbox uses - not only 2XX)!

    Good luck.