Hi all,
Python 3.6, using module dropbox.
I have a URL for a file shared from someone else's dropbox account. The file gets regularly updated (same name, same link). I wish to download from this link.
I can't seem to get at it. I have code that looks like:
import dropbox
access_token = 'ABC123yNOBAAAAAAAAAYq3fOaDy6C4Lj7QV9dckXDqkQfGM2LW2Oe9hI2LXSPyTj'
dbx = dropbox.Dropbox(access_token)
url1 = 'https://www.dropbox.com/l/scl/ABC123NXsA-8ndaH0aOaaSBR5AH78NMHPTw'
but I can't work out which endpoint to call.
Cheers,
---=L