Get help with the Dropbox API from fellow developers and experts.
I am using the dropbox api to upload some files, first I retrieve the xlsx file then I concatenate the new information at the end and then I upload the file, but I am afraid that the heavier the file becomes the longer it will take to download and upload the file for this reason I want to ask if, is there any way I can…
var dbx = new Dropbox({ accessToken: dbx_access_token , fetch}); await dbx.filesDownload({ path: dbx_path }).then(async (response) => { console.log("down"); await response.pipe(temporaryFileStream); }).catch((error) => { console.log(error); });This is the code i am using to download a file. And then I want to open it. So,…
Hello Dropbox team, I have set up a small app as a python script which runs continuously on my server, and which needs to read some files that I store on my Dropbox storage space, in the folder dedicated to this app. This script needs to read those files at regular interval (currently every 15 minutes). When I set up this…
Hi there. How do I get rid of the error message “expired access token”
Does the refresh token expires when it is not used for long time?
Hello everyone! I have developed an API for uploading files and generating links for downloading them. However, I am encountering an issue when trying to obtain a shared link. The problem is that when I send a request to the '/get_shared_link_file' endpoint, I receive the following error: Error: ".tag": "missing_scope",…
Hello, I've embedded a raw PDF from dropbox using this code: <embed src="dropboxpdflinkhere?raw=1" type="application/pdf" width="100%" height="100%" /> All fine and good. But usually I can add toolbar=0 and navpanes=0 on the end to control how the pdf is shown. These commands no longer work using a dropbox hosted PDF. Is…
All I want to do is get a list of subfolders within the Root folder. However, if I or another member adds a new folder, it does not show up. Here's the code I'm using. async Task ListRootFolder(DropboxClient dbx) { var list = await dbx.Files.ListFolderAsync(string.Empty); folders.Clear(); foreach (var item in…
Have there been any changes in recent versions of SwiftyDropbox to accommodate any new security restrictions on Ventura? I developed a macOS app with a FileProvider Finder extension, which initialises smoothly under Monterey and earlier versions; however, some people installing it on Ventura are reporting a whole string of…
1. I am developing an application, which will have about 4-6 users with different email addresses. 2. Then I have created a dropbox app and scope is the application folder (from this account) 3. So I did the part where you get the code, from there it is redirected to here…
It looks like you're new here. Sign in or register to get started.