-
Search files in folder based on file tags python sdk
I'm trying to search files in a folder based on file tag, python SDK, yet encountering an error when trying to use my folder path: from dropbox.files import SearchOptions# search_op = SearchOptions() # this works but gives me everything from master foldersearch_op = SearchOptions(path="/Thang…
-
getMetadataValue() return null on "shared link already exists", JAVA SDK
I'm trying to implement a function where I can get shared links to dropbox folders via API. I was able to generate the shared link but if the link has been generated, the next call on the same folder will return this exception: "CreateSharedLinkWithSettingsErrorException" I tried to handle it so that I could retrieve the…
-
why there is no option for write mode for move/copy files
I notice there is an option to use writemode mode=dropbox.files.WriteMode.overwrite when using uploading API ( dbx.files_upload() ), but there is no option for copying/moving file api. Can we add that? I'm using Python SDK: dbx.files_move_v2()dbx.files_copy_v2() and have been writing many boilerplates to handle file…
-
Is there a way to add another user/team member to my API app's console?
I built an app using Dropbox's python SDK and Dropbox app console. My app doesn't run 24/7, hence I use ngrok to connect to Dropbox's webhook. The issue is the link for webhook is different every time I turn it on, so I need to add it manually. Not a big deal, but the app's configuration: "refresh_token", ..etc.. is…
-
How to automate keeping track of images being uploaded and resize them (24/7).
Hi guys, My company uploads images daily and needs an automated image resizer running 24/7. I'm getting stuck on building this functionality via Dropbox's webhook. My idea is to host a web server that will receive a notification whenever somebody uploads an image and resize them in the back end. My problem is I can't seem…