-
Clicking files in embedded Dropbox leads to registration screen instead of direct download
We have embedded Dropbox onto our website in an iframe: [Removed as per Community Guidelines] We produce a Dropbox read only share link to include in the embed code. For some folders we get a share link containing /scl/fo/ which leads to a registration splash screen whenever a website visitor clicks a file in the embedder.…
-
API-libcurl cannot use CURLOPT_RANGE or any other functions to resume to download files
Hi, I use libcurl to call the dropbox api to achieve some functions. When calling file/download, the download will be disconnected when the file exceeds 2G, so I want to implement the function of file continuation. Locally use curl to send curl -X POST <url> \<rest code>--header'Range: {"bytes": "******-"} ' to dropbox to…
-
Started to get PathRootErrorException
Hey, I work with Dropbox Java SDK latest, and have a running app. Since recently I started to get PathRootErrorException sdkClient.asAdmin().withPathRoot(PathRoot.root(teamNamespace)) .files() .listFolderGetLatestCursorBuilder("") .withRecursive(true) .start().getCursor(); When trying to call this…
-
Dropbox API - Invalid redirect URI (Error 400) with React Native Expo
I am building a React native app and trying to integrate the Dropbox API. I'm following expo's app auth guide: https://docs.expo.dev/guides/authentication/#dropbox and I have the App registered with a scheme in the redirect URI's as: com.kkanchev94.esignapp://oauth and the same one registered and build with that scheme in…
-
Automate email post-upload script
We are using Dropbox to ingest files from our clients. We get them access to a shared folder (we're still thinking through which sharing option is best here such that clients can easily upload, but also keep tabs on their previously uploaded files, aka not a good use case for file requests). We want to automate a way to…
-
API folder creation
I'm using Google Colab + Python to create a list of folder from a googleSheet of my open projects. I set-up the App in dropbox & the code runs without error. It checks to see if the folder path already exists before creation. Ran the 1st time & received confirmation the folders were created. Ran the 2nd time and it said…
-
How to get id of a deleted folder?
While building an integration with Dropbox I am running into typical situation of deleting folders at my app's end when a subject folder is deleted by the user on Dropbox. Via webhooks I am getting Metadata object actually DeleteMetadata object which does have path but no id, at my end we don't keep track of paths as such…
-
Dropbox tutorial is not updated for OAuth and assumes that I can get an ACCESS TOKEN...
I am a fairly experienced developer but new to the Dropbox API. I am on this page, the Dropbox for Python Tutorial. The example assumes that I can get an ACCESS TOKEN from the App Console. However, my App Console does not offer me an ACCESS TOKEN. It only offers me OAuth tools. I have had bad luck with OAuth 2.0 on…
-
Oauth2 is asking to login with work account
Hello, I have created an app and while implementing it. During Oauth2 sign in process it is showing me login with work account message. Please help with it what is work account ? here is the screenshot of the error. https://prnt.sc/u2u44d Thanks
-
Upload a file to a shared folder using the REST API
I'm attempting to upload a file to a shared (team) folder in Dropbox. \ (hidden root) \[My Personal Folder] \My Company Team Folder \Activities \2024-04-11 File A File B I want to add files to \My Company Team Folder\Activities\2024-04-11. This is the code (PowerShell): $AccessToken = 'XXXXX' $TeamMemberId = '123456' # an…
-
Can we list only paper , paper template, files or shortcut at a time
Using Dropbox SDK , we can all list all files & folders using following API client.files().listFolderBuilder("").withRecursive(true) .withLimit((long) limit).withIncludeHasExplicitSharedMembers(true) .withIncludeMountedFolders(false).start() Is there any API by which we can only list paper files or paper template file?
-
Dropbox Api 6.1: Auth is not recognised
Hi, after updating from Android Java Api 'com.dropbox.core:dropbox-core-sdk:5.4.0' to com.dropbox.core:dropbox-core-sdk:6.1.0' Auth is not recognised. I need it for the PKCE flow: 'Auth.startOAuth2PKCE(...)' Seems like this has changed something and I can't find any reference to it. Thanks Geggs
-
List folder api with admin header
Hello, im using the Api list_folder and try to get any event for any user in the team. is it possible? Im using the header dropbox-api-select-admin and i saw in the docs - ----- Specifically, there are two different modes for Dropbox-API-Select-Admin header that calls may support: * Whole Team The endpoint can access…
-
Export Folders & Filename List
Hey there! I'm looking for a method to generate a TXT file containing the contents of a publicly shared folder, including both files and subfolders, along with their respective filenames and modification dates. I first attempted to create a script with ChatGPT's help, but couldn't get it to work. Then, I tried using the…
-
How to append to existing file
Hi Using api v2 Is it possible to append to end of an existing file?
-
How to merge two folders with Dropbox.Net SDK?
Dear support, To rename a folder, I call the MoveV2Async(pathOld, pathNew). If the pathNew exists, it fails with an error "to/conflict/folder/". If the destination folder already exists, I'd like to merge the old folder including its contained files/subfolders to the destination folder. i.e. copy and replace the…
-
Embed a File Request On My Website
Hello! I would love the ability to embed or host a file request directly on my website. We currently share our file request link and people are directed to the Dropbox File Request site; However, I would like for people to be directed to and perform this function on my website. I have seen this accomplished with a Box.com…
-
how to allow listening access of Dropbox audio files within my apps interface
I want to allow users of my app to them be able to connect their dropbox account and select the folder they want to allow access to. Their folder names and their file names will be displayed in their profile on my app. Then I want them to be able to play the audio file within my app's interface. I also want the process of…
-
Searching for '*' in the search api returns 0 results
This request should return all jpg assets but returns 0 results. (this used to work, but doesn't work anymore) Any ideas? Requets: curl --location 'https://api.dropboxapi.com/2/files/search_v2' \ --header 'Authorization: Bearer…
-
HEAD request to get Content-Type of shared file no longer working
For a few years now, I've been able to use HEAD requests from my web page to verify that a Dropbox link that a user provides points to a "Content-Type: video/mp4" file All of a sudden I get the following headers (some omitted for brevity): Accept-Ranges: bytesAccess-Control-Allow-Origin: *Access-Control-Expose-Headers:…
-
My App is not working on new device
Hello I have developed an app through App Console and it has been working very well on my Samsung Galaxy Tab A. My app provides the app key and receive the OAuth2Token through startOAuth2Authentication". All good, it asks for approval to access then provides my token. I have just tried to run the app with a different…
-
How to synchronize files from Files app on iOS?
On iOS, I allow the user to select a file with UIDocumentPickerViewController. The user can select for example a Dropbox file. I’m able to read the file content, however, after the content is read for the first time, it never again sychronizes to the latest version unless I explicitly open Files app and go to its location.…
-
Detect changes in the account for any user in the team
Hello, im using the Api list_folder and trying to get files or modification for any user in the team without knowing for which user changes has been made. is it possible? Im using the header dropbox-api-select-admin and i saw in the docs - ----- Specifically, there are two different modes…
-
Can't get folders lists for Error 409 "path/locked"
I am developing application that sends files, lists folders to Dropbox via API. When getting folders list by API as follows: "https://api.dropboxapi.com/2/files/list_folder" or "https://api.dropboxapi.com/2/files/list_folder/continue" , I get error response as follows: HTTP 409(Conflict) {""error_summary"":…
-
move_batch API Request getting "relocation_error" "conflict" status
First let me start off by saying that I am not a coder. I just see patterns and typically figure out how to make things work. I'm using Zapier to do a number of automations. One task that I'm needing automated is the moving of all files from one folder to another. Zapier does not have a clickable function to do this, so I…
-
Unable to choose file
I have created Dropbox for pick file for attachment but unable to pick the file in Dropbox pop up from my account
-
new device error - DownloadErrorException: Exception in 2/files/down
I have developed an app that operates well on a Samsung Tablet ("Tablet1"). I have now loaded the app onto a different Samsung tablet (same model-"Tablet2") but find that when I try to download the file from the "Tablet2" I get the above error. The file and path remain the same in both instances. Is there something I am…
-
How to ListFolderAsync to a folder in the root folder?
Currently, I am trying to connect a WPF C# app to my Dropbox. I have the folders organized in the way you see in the image. Leaving the string empty opens the "Student" folder, however I want my app to list the contents "code" folder. I have tried using "code", "\\code", "/code" but the app always throws a path not found…
-
client.files().downloadBuilder drops download speed suddenly
I use this simplified java code to download some binary files: DbxClientV2 client;//some client String filePath;//some file path OutputStream out;//some output stream try (DbxDownloader<FileMetadata> dbxDownloader = client.files().downloadBuilder(filePath).start()) { dbxDownloader.download(out); } This code works fine…
-
Getting error DbxRequestUtil.unexpectedStatus(DbxRequestUtil.java:387)
I am getting following error too frequently while using Dropbox Java SDK Please suggest solution for this com.dropbox.core.RateLimitException: null at com.dropbox.core.DbxRequestUtil.unexpectedStatus(DbxRequestUtil.java:387) at com.dropbox.core.v2.DbxRawClientV2$1.execute(DbxRawClientV2.java:154) at…