Get help with the Dropbox API from fellow developers and experts.
I'd really like to receive file sync start events. Today webhooks are sent on completion of backend work (ie file delete, file add, etc.) But I work with what most of you might think of as huge files. For instance a 100GB file might take hours, for backend sync, but I'd like notification before it arrives so our other…
I made app with visual studio 2015 and used libcurl. but this shows error "Couldn't resolve host name" CURL *curl; CURLcode res; std::string readBuffer; // Your Dropbox access token std::string accessToken = "****"; // File to upload std::string filePath = "D://test.txt"; std::string fileName = "file.txt"; // Name of the…
Hi, I'm a novice coder. Can someone take a look at the following method and tell me if I'm doing something wrong? Sometimes the files I upload to dropbox are corrupts. I'm working with large audiovisual files. This doesn't always happen. Only occasionally. # Uploads file to dropbox def upload_file_to_dropbox(self,…
I am trying to read files in DropBox folders on my Mac with java. The following code: String dir = "/Users/brucewilcox/Library/CloudStorage/Dropbox/Apps/Form8949DotCom/taxdochub-forms-pdf/XXXX"; File directory = new File( dir ); boolean canRead = directory.canRead( ); String message = String.format( "canRead is: %s",…
Bonjour, Je génère des presigned download url via la librairie js Dropbox avec la fonction filesGetTemporaryLink. Je génère ensuite un lien html de cette manière : const link = document.createElement("a");link.style.display = "none";link.href = url;link.download = filename;link.target =…
Hi, I am able to generate Access Token manually thru the dropbox website which is working fine. But expires after a few hours, Is there any method in Java that can generate access token programmatically? I would like to test this out so that we can start doing uploads and downloads by generating access tokens.
I am using below api to get the list of all users. How to determine the admin from these users I need to use his/her id for select_admin: in subsequent calls for listing team folders const url = 'https://api.dropboxapi.com/2/team/members/list_v2';const headers = {Authorization: `Bearer ${accessToken}`,'Content-Type':…
Hello, I've tried downloading an Audio File from a share link using the suggested method on dropbox-sdk-js but I keep getting an error: Error downloading file: DropboxResponseError: Response failed with a 401 code Here's my code: import { Dropbox } from "dropbox"; // Inside the component: // Download function const…
I am currently integrating Dropbox with a software solution for my customers and would like to better understand the API rate limits and usage restrictions for different Dropbox plans. While I have reviewed the documentation, I found that the specific limitations and restrictions for each plan, including Dropbox Business…
Hello @Greg-DB Recently, there were changes made in the code related to Dropbox Teamspaces. We are now facing errors sometimes when we download files that were notified with file paths by webhooks. Using webhooks, we obtain the path of the recently added file in the account and then download using Dropbox APIs. In the…
It looks like you're new here. Sign in or register to get started.