-
How to programmatically disconnect the Dropbox integration OAuth2 app on behalf of my user?
Hi there, I have developed an OAuth2 integration of our app with Dropbox. I would like to know what is the API endpoint for disconnecting the integration on behalf of our app's user, who say wants to disconnect the 2 way communication between our app and Dropbox. I could find the /token/revoke endpoint but same is just…
-
filesGetTemporaryUploadLink - 404
Hi! I'm user of dropbox basic and I'm generating upload link but the link following to 404 page. I have one folder /home/products and one app /Apps/xxx with folder /products I did try every combination to get proper link but its impossible for me. here is list of paths witch I did provide - /products -…
-
generation of preview for business user
Hello, i developed an integration for our applications that allows user to create a sharing link using dropbox api method "sharingCreateSharedLink". I tested it using some personal account and had no problem, but it does not work with a business account of a colleague. this method takes two params: short_url and path…
-
app without permission for contact into
We want our app to just have read/write permission to the app folder for backing up some important data for our app users. We don't care to know personal information like username, email and location of the user but it seems like we cannot unselect the account_info.read permission forcing us to have access to personal…
-
App Folders and Business access
I am hoping someone can help with this as I am not getting anywhere and am being past from pillar to post between support desks! Previously I have a variety of 3rd party apps intergrated with my personal dropbox - one being Zapier for example. Since upgrading to Business Zapier and every other 3rd party app can only see my…
-
Download file by Api ( Files/download ) , no error no file
I try to dowload a file by a Api . I have no error and a response with "OK" but i don't see the file. Have i donwloaded it ? where ? can i set up the local directory where save it ? This is my code : ( a big doubt is in content-Type ) Dim _command As String _command = "https://content.dropboxapi.com/2/files/download" Dim…
-
Drop box js sdk
this.dbxAuth = new DropboxAuth({clientId: dropboxConfig.clientId,clientSecret: dropboxConfig.clientSecret,}) i am stroing the refreshToken from const tokenResponse = await this.dbxAuth.getAccessTokenFromCode( dropboxConfig.redirectUri, code,) this method . const scopes =…
-
Property 'auth' does not exist on type 'Dropbox'
auth export class DropboxService {private dbx: Dropbox constructor() {this.dbx = new Dropbox({fetch,clientId: dropboxConfig.clientId,clientSecret: dropboxConfig.clientSecret,})} generateAuthUrl() {const authUrl = this.dbx.auth.getAuthenticationUrl(dropboxConfig.redirectUri,undefined,'code',)return authUrl} shows error auth…
-
Type 'DropboxClientsManager' has no member 'setupWithAppKey'
I'm running SwiftyDropbox version 10.1.0 on XCode 15.4 with a MacOS deployment target of 14.5. When i copy and paste the code in the tutorial here: https://dropbox.github.io/SwiftyDropbox/api-docs/latest/ I get an error: SwiftyDropbox/DropboxClientsManager.swift:53: Precondition failed: Only call…
-
Inconsistent Content Hash Values from Dropbox Endpoints
Hello, I hope you're all doing well. I've come across an issue while working with the Dropbox API, specifically related to content hash values, and I'd like to seek your insights on this matter. * List Folder and Thumbnail Batch Endpoints: When using the "List Folder" and "Thumbnail Batch" endpoints, I observed that the…
-
Error 404 Server remote no found
I have an expired token so to get a new one. I try with this code but i have the error Error 404 Server remote no found. I use https://api.dropbox.com and https://api.dropboxapi.com with the same result. Dim _command As String _command = "https://api.dropboxapi.com/oauth2/token " _command += " -d grant_type=refresh_token "…
-
route_access_denied
Hi, Would someone be able to help with the following error 401 route_access_denied. I've encountered the above a couple of times now and would like some advice on best to handle it? We use refresh tokens to obtain new access tokens, which appears to be working fine (did encounter and issue with tokens previously - tokens…
-
Questions using chooser
I encountered several questions when using the js of chooser. I would like to ask for advice.Thanks~ 1. How do I mount the chooser into a specified container as an iframe? 2. How do I configure frame-ancestors 3.Can the login page also be in an iframe instead of a pop-up window when not logged in?
-
API to upload files to folders outside of user account folder
Hello, I need to upload files using API to a folder that is outside of my current user account (the user ID I’m logged in with). However, when using the API, the folder structure is being created within my user folder instead of uploading to the existing target folder. How can I upload files to these other folders? For…
-
Access dropbox file - Authentication failed because the remote party has closed the transport stream
i'm new in this type of access. I wrote this code but i have the error in objet to recover the list of files in dropbox. Dim token As String token = "sl.B6........." Dim _command As String _command = "https://api.dropboxapi.com/2/files/list_folder" Dim Request As HttpWebRequest Request = HttpWebRequest.Create(_command)…
-
Bad HTTP Content-Type header on download
I am converting, from Xamarin to MAUI, a working Android/iOS app that uses the .NET Dropbox API (specifically the Dropbox.Api V7.7.0 Nuget). Here is a segment of working Xamarin code: DropboxClientConfig dropboxClientConfig = new DropboxClientConfig () { HttpClient = new HttpClient ( new HttpClientHandler () ) };…
-
Integrate Dropbox in my web application ( asp.net )
Hello, i'd like integrate my web application with dropbox. I use visual studio 2015 and asp.net . I'd like understand if i must install something or i can call API. If it is possible I'd like also see some examples. Thank you. Luca
-
Error in call to API function "files/list_folder": request body: unknown field 'Path'
I have a sample WinDev code below which login to Dropbox and obtain a Token and try to list the files/folder in the root. ie Path = "". when it gets to the line "HTTPresponse is httpResponse = HTTPSend(req)", the request comes back with Error in call to API function "files/list_folder": request body: unknown field 'Path',…
-
How can I get the total storage used by a member using the API?
I'm trying to get a list of all members and the storage used by each using the business API. The members/list api doesn't seem to return the storage used by the member. How else can we get at this information?
-
large file upload for github actions
Hi all, I'm trying to integrate my software pipeline with dropbox. I've written this bash script that should be able to use the upload session based on the api doc and upload the files but I think I'm doing something wrong with the chunking logic. Here is my code https://github.com/thedefaultman/dropbox-large-file-uploader…
-
Webhook configuration
Hi everyone, new to this forum! I'm new to Dropbox development (so apologies for this basic query) and implementing webhooks into my app to download files when a state change occurs (new file added) using the list_folder endpoint. My code is as follows: I work with django and Python and even though I have added debugging,…
-
Is there a Java SDK equivalent of Swifty Dropbox batchUploadFiles function?
I just stumbled across batchUploadFiles in CustomRoutes.swift - it seems to be undocumented, but is an extremely useful high-level function which simplifies an awful lot of complex code required to do a batch upload (I wish I found this 3 days ago!). As it's undocumented I was wondering if there's a reason for that (eg is…
-
refresh token is malformed
Hello! I need help because I'm a little confused with the refresh token for integrations via API I am using this guide: https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token, and I follow these steps but I always get the malformed token response 1 - Get the code from…
-
Large number of new errors when making write actions via Dropbox API
Hi folks, We’re having some trouble with our Dropbox API integration and getting new errors from the Dropbox API. Some backstory: we’ve been using the Dropbox API to manage shared folders across our company, both creating/deleting shared folders as well as adding/removing users to those shared folders. We use the API via…
-
Figuring out what type of error in unboxed in SwiftyDropbox
I'm trying to understand how to catch and parse errors from the swifty dropbox SDK, specifically route errors. Apologies if this is a simple question, I'm new to Swift! In the examples that I've seen (for example here), a route error is unboxed and then cast to a specific error type like this: case .routeError(let boxed,…
-
Activation failure
Recently, I can't obtain "access token" through this url (https://api.dropbox.com/oauth2/token) so that I've been unable to activate the cloud. The device's curl always shows : * Resolving timed out after 5009 milliseconds. But my network status is normal.Please tell me how to analyze. Thank u very much.
-
Update files (images) and keep creation date
Hi, I'm using the upload api to send some images to my Dropbox account. What I'm noticing is that the images' creation dates are being set to the upload date. So if I took a picture yesterday on my iPhone, and today sending it on my app, through the Dropbox API, the creation date is "now". That's rather unfortunate. The…
-
Bug with Dropbox API to upload file with filename containing special characters
Hi, The Dropbox API seems to have a bug when we try to upload File in Dropbox that have specific characters in the filename, while we can do it manually without any issue. Example of characters: é or ' So pls suggest your Dev team to review the Dropbox API, I believe it does not work when there is special character in the…
-
Ideas on creating shared links and finding projects by keyword?
Hi everyone, I hope I can get some ideas here as I can't figure this out. Background We upload all our projects to Dropbox. Since we use software for project creation, they generally have similar folder structures (though they can vary slightly depending on the version). The software creates SQLite databases along with…
-
Is there any Open API (a.k.a. Swagger) spec for Dropbox API?
Stone is great, but for more flexibility, we need a broader standard for the API. Like the subject, is there any Open API (a.k.a. Swagger) spec for Dropbox API? If not, is there any plans for Stone backend for Swagger?