[Fixed]-How can I take url to a file, which is on dropbox, programmatically?

1👍

It sounds like you’re looking for the sharing_create_shared_link method in the Dropbox Python SDK.

The basic idea would likely be something like:

dbx.sharing_create_shared_link(path)
👤Greg

Leave a comment