-
Re: Failed to Load Request Error when using Chooser API
While this works now on single file selection. With a larger multi-file selection (20 or so files) it is failing with the same error. This doesn't happen every time, but happens pretty often. It appears there is a timeout set. If that timeout is exceeded, it will fail to add the files. Any help is greatly appreciated!
-
Files Uploaded via PowerShell Script Not Appearing
Hi -- We have a PowerShell script that uploads files to Dropbox but since the Dropbox update / upgrade at the end of last week the files are not appearing on Dropbox. The script does not report any errors. I also tried creating a directory through the API end point using Postman and I got a success message in response to…
-
Minimal code needed to access a team user's space using a Generated access token on macOS
I am looking to add Dropbox access to a locally run utility in house. In other words, this project will never ship to other users and more simply it will never need to be accessed with user interaction. (It will just be selectively enumerating the storage for a known user in the team space) In the SwiftyDropbox README it…
-
Dropbox chooser integrated with a react webapp not working when opened in chrome ios mobile, ipads
Dropbox chooser is integrated with react web application. Its working fine when opened on desktop and android devices. But its not working when application is opened in chrome browser in ios device(mobile, ipad). In safari its working fine, issue is in chrome only. Not sure if this is an issue with chrome or dropbox.…
-
Webhook questions. Also, a way to get actual events?
Dropbox webhooks seem to go conspicuously out of their way to be mysterious in nature. When we receive a webhook, we use a cursor that we're responsible for maintaining to enumerate entries in a directory that the events are supposed to be for, but there appears to be no way of reading the specific events that induced the…
-
Erroneous webhook notifications
I'll do a handful of operations over a specific directory, and I'll seemingly get N webhook notifications a moment later. However, I'll get one or two notifications five or ten minutes later, and the cursor (for that specific directory) will not enumerate anything. What is this?
-
Get thumbnail API issue for the last 24 hours
Hi, Our app is using the dropbox node.js SDK v10.32.0 to get a thumbnail of an image. Usage example: this.dbx.filesGetThumbnailBatch({ entries }).then((response) => { // response.result.entries must be an array but it randomly returns empty string }); For the last 24 hours, we started experiencing an issue with this API…
-
Dropbox API and AWS Lambda
Hi, I have a web app that is is taking files and uploading them to an S3 bucket. I have written a Lambda function to upload the files from the bucket to a Dropbox folder with the API. I tested it locally and it worked fine. I created a directory locally, added my script, used pip to install the Dropbox API, zipped those…
-
Forced to make all users Team Admins? "You must be a team administrator to authorize this app"
Good morning: Transitioning to short-lived token with a snag. The "no expiration" token currently used in the 10-person dev environment is working perfect to upload/download/save, etc.... files/folders in a shared teams environment. Got oauth2 working for me and my other user with Team Administrator access. The app must…
-
Failed to establish a new connection: [WinError 10060] A connection attempt failed because the conne
Hi. kind of stuck.. getting this error - worked two days ago. thanks for any ideas. Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'…
-
Dropbox's code example for sharing a file link in Python not working
#Python code provided by Dropboximport requestsimport json url = "https://api.dropboxapi.com/2/sharing/get_shared_link_metadata"headers = { "Authorization": "Bearer append-current-token""Content-Type": "application/json"}data = { "path": "/baby dream/Cris Rodriguez/10yrsZ.tif"} r = requests.post(url, headers=headers,…
-
Failed to Load Request Error when using Chooser API
We use the Dropbox Chooser API and have recently started having a problem with it (as of yesterday evening). Now when the user selects a file from the Chooser pop-up then clicks "Choose" to confirm their selection, an error appears saying "Failed to load request". The pop-up window does not close and nothing is returned to…
-
How to create a folder via PowerShell with Dropbox REST API?
Good morning. I have been looking for a way to create a folder via PowerShell in Dropbox with REST API and I have not found a way to do it. I only found the forum http://rest-examples.chilkat.io/dropbox/powershell/chilkat_291.cshtml, but you need to buy a library. Can you help me to have an example using the Url…
-
Failed to load requests error
Seems like your integration capability is down. a bunch of platforms, monday.com included gets the following error when trying to upload files from dropbox: failed to load request, with 400 HTTP error link removed This is also happening with Asana.
-
Long time registered app not allowing Oauth authentication.
Anyone know why all of a sudden a dropbox registered app that's been working fine for years would suddenly show {"error": "invalid_scope", "error_description": "Non-scoped apps cannot specify token scopes"} When attempting to use an oauth refresh token like so. POST https://api.dropbox.com/oauth2/token HTTP/1.1…
-
Refused to display 'https://www.dropbox.com/' in a frame because it set 'X-Frame-Options' to 'deny'.
According to the document configuration operation, but failed
-
API rate limiting on file download
I am using Duplicacy for backing up data to my Dropbox Business account. It is a Dropbox API app and writes to the Apps directory. The issue I am having is that when downloading (for restoring or verification of a backup), I'm being rate-limited to an effective download rate of about 20 MB/s, which is a lot slower than I'd…
-
How to create a folder in a team shared folder and make it accessible to a small part of the team
Hi, I am currently using Make (a no code platform) to automate the creation of a folder in a shared folder after the start of a new project. The issue is that everyone (30 ~) have access to that folder, when only a small portion (usually 2 – 4) of that team actually need to have access to it. I read the API documentation,…
-
Unable to get shared link information in LinkPermissions in Java SDK
I have shared some files in Dropbox Business. I am using Dropbox Java SDK to get shared link information using SharedLinkMetadata -> LinkPermissions . I want to get the LinkAudience of a shared file link (public, team, password_protected, invited etc) AND its AccessLevel (viewer or editor) which are present inside…
-
As shown in the figure below, how this page is generated or entered
-
How to access your own project through this link ('https://www.dropbox.com/dropins/embed'),
How to access your own project through this link ('https://www.dropbox.com/dropins/embed'), what permissions do you need, this link includes functions such as view switching, downloading, sharing, and viewing
-
Unable to list files in shared Dropbox folder using Python and the Dropbox API
I am trying to use Python and the Dropbox API to list the files in a shared Dropbox folder. Here is my source code: """ import dropbox import os # Replace "ACCESS_TOKEN" with your Dropbox access token ACCESS_TOKEN = "MY_ACCESS_TOKEN" # Replace "https://www.dropbox.com/sh/..." with the shared link to the folder containing…
-
List ALL folders and files on my dropbox account
Hi, i'm working on c# and i can just show the files on the root directory , i want to show all the folders and files inside this folders on the root directory, didn't see anything on the forum, any idea? Thx
-
How to use the "App Key" and "App Secret" parameters with the PowerShell Invoke-RestMethod command?
Good afternoon. I am currently connecting to Dropbox via PowerShell using the Invoke-RestMethod command and using the "Generated Access Token". Currently the problem that I am presenting is that daily the "Generated access token" changes and I have to modify the PowerShell Script. Is there a way that I can use another…
-
Download Using HTTP Not HTTPS
Greetings, I am a developer, for my case i need to download files from Dropbox using http (not it's not https).. google drive and ms both support http and https for the same link/file, but unfortunately when i try to download using http Dropbox redirect to https chancel/link/protocol. for example: following link for…
-
Resume upload: what is the current offset?
Hi, I understand I can use upload sessions to upload large files. That is: call Upload Session Start, then Upload Session Append and finally Upload Session Finish. My question: is it possible to query what is the current offset taking only the session id? The scenario is: application calls Upload Session Start, saves…
-
ES modules for the modern web
All of the examples I've found use outmoded global scripts, and your Javascript SDK is not available in ES module form. I suggest you modernize your SDK packaging, and also modernize your examples. Not only will this improve security, but it will also enhance the public perception of Dropbox among web developers.
-
Dropbox API Hangs During Large File Download
Hey there! I am currently maintaining a mod launcher software that utilizes the Dropbox .NET C# API to allow users to download mod files. Unfortunately, large files (usually 2-5GB in size) do not download completely while using the launcher, hanging mid-way through the download and refusing to complete, even if a download…
-
Specification '\dropbox-sdk-java\generated_stone_source\main\src' must have a .stone extension
After importing the dropbox-sdk-java example from the official GitHub into Android Studio I get this building and trying to run it: Specification 'C:\Users\******\StudioProjects\dropbox-sdk-java\dropbox-sdk-java\generated_stone_source\main\src' must have a .stone extension.Execution failed for task…