-
Salesforce To dropbox file upload
Hello All, I am trying to upload a file from salesforce to Dropbox. I have created a class in salesforce as per suggestions from the internet. My code is: public class dropBoxApi{ Public String code ; Public String accesstoken; public String fileBody{get;set;} public dropBoxApi() { code =…
-
how to know my doc path in dropbox so i can call list_rev API URL
how to know my doc path in dropbox ? so i can call `https://api.dropboxapi.com/2/files/list_revisions` my json body for the request is : { "path": "/root/", "mode": "path", "limit": 10 } what i'm trying to do is to list all rev for all doc im my Dropbox , but i'm getting `"error_summary": "path/malformed_path/",`
-
Migrating access token from API v1 to v2
Hello, I am trying to migrate our API to version 2 and followed the migration guide with no success(https://www.dropbox.com/developers/reference/migration-guide ). Just one example is that I am using the link below in order to connect my excel spreadsheet with our BI tool using the api v.1 and access token.…
-
Sharing of folders inside the Apps/ folder
I have an application (madoko.net) where users rely on shared folders in dropbox to cooperate. However, I now need to give the application access to a users' entire dropbox and I would like to make it a restricted application under Apps/Madoko. Unfortunately, currently users are unable to share folders inside the Apps…
-
upgrade your Dropbox Api's newtonsoft.json to 9.0.0.0
i am using your dropbox api with newtonsoft.json 7.0.1 dll ..if i use 7.0.1 dll i get the data,but this dll affect my other project..please provide your dropbox.api with newtonsoft.json.dll for 9.0.0 version
-
listfolder function
I am using java and am trying to list all the folders and include the property groups as talked about here inorder to reduce api calls. However when I look at the builder here there is no option to do this. Is this part of the java sdk or am I going to have to make http calls in order to do this
-
Space full message is not returned by API
Dropbox API v1, Dropbox SDK 1.6.3 (android) - If there is no space on Dropbox, SDK was returning an error code 507 Dropbox API v2, Dropbox SDK 2.0.1 (android) - If there is no space on Dropbox, Upload API fails with response parsing exception with no clear description that this is because of the space limit. Also I am…
-
Chrome Extension "Download to Dropbox"
I have a Chrome extension developed using Angular JS and High Charts. I need a functionality to be added to upload files to dropbox from this chrome based app. I have written a code to authorize users to dropbox using core api, however it is failing with following error. I have following questions : 1.) Can I connect to…
-
Webhook functionality implementation.
Hello, I want to implement Webhook functionality. I don't have server for my website right now. So created Webhook URI on other's server e.g " https://www.example.com/webhook_test_uri ". I created get & post method there. I verify the request by echoing value of challenge parameter & my URI get enabled. My OAuth2 redirect…
-
Unable to list linked devices
We want our app to be able to list linked devices without having access to files. We've granted the app the "Team auditing" permission type but when we try using the team_devices_list_team_devices() method we get a permissions error. Please advise, thank you!
-
Request to publish a subset of dropbox java library
I looked at the transition of the number of functions contained in the library of recent dropbox. In the following investigation, I created a sample application, bundled a library of dropbox in it, created a apk file using proguard, and examined it by D & D to android studio. v3.0.3 - 14,064 v3.0.4 - 24,764 v3.0.5 - 24,946…
-
Error Summaries
Hi, Is there any documentation available, for list of error codes and the sample error responses? This will be helpful to handle errors and Exception. Thanks in advance
-
Issue with demo webhoook app running at mdwebhook.herokuapp.com
Dear all, I need to use webhook in one of our projects. I have carefully read webhook documentation available at https://www.dropbox.com/developers/reference/webhooks. Within th tuturial there is demo webhook deployed at mdwebhook.herokuapp.com but is not working. When I open the app and connect to my dropbox account it…
-
h264 video URL
Is there a way to get the link for the h264 version of video files that Dropbox uses in a web browser or its native Android client? For instance, if I have a .mov file, I can get a link to the file for direct playback by calling getTemporaryLink. However, the .mov file is in the wrong encoding for playback on Android or in…
-
Unusual nonprofit situation needing developer assistance......
Hello, I run a small nonprofit here in Kansas. I had unfortunate event in that my home/office/agency just lost everything, including all doc/digital files in a total loss flood. So while I try to remain and maintain this agency as CEO, I am trying to get us afloat in some type of Cloud situation - where I can have a…
-
Dynamically create apps
Hi! I'm designing an app, where users would potentially make a lot of queries to the Dropbox API (it will make use of very active file-sharing). And this amount of requests by all the users will obviously hit the rate limiting for a single Dropbox app. But it will be fine for a single user though. So I came up with the…
-
File Listing in Ascending/Descending order
Hi, We have File/Folder listing based on Alphabetical sorting in Dropbox UI. Is there a way to achieve the same using REST APIs? Also, In what order, are the files/folders given as response from the api? (like based on creation time or modified time or alphabetical order)Any help is appreciated. Thanks in advance.
-
Dropbox API - Objective C - uploadData - versioned updates
Objective-C API Question Previously when I uploaded files (old API) dropbox would create numbered versions if the file was already there. I am trying to do this same thing using the "uploadData" file route, like this: DBFILESWriteMode *mode = [[DBFILESWriteMode alloc] initWithUpdate:parentRev]; // parentRev is null here,…
-
SwiftyDropBox Auth flow issue
I'm following the SwiftyDropbox documentation for my project, and have gotten as far as having my app switch to authenticating via the Dropbox app and switching back into my app. However, the application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool function is not…
-
v2 Search API results delayed
After uploading a file into dropbox, it looks like the v2 search API has a noticeable delay before the file will appear. I don't recall this issue with the v1 API, but its quite apparent now. Repro steps: 1. Drag and drop a file into dropbox on Mac OSX and see checkbox indicating upload is completed. For my tests I'm…
-
Endpoint /token reponse with content-type "text/javascript"
My app is using the authorization code flow, so after getting auth. code its requesting access token through token endpoint, Its returning a response with json content: "{ access_token: ... }", but content-type header is "text/javascript", is it right? Thanks in advance
-
Capture User Info with Saver
I would like to user the Saver button on my website, but I would like to capture basic info, like email address, of the person coming to my website and accessing the file. Is that possible?
-
Issue with ListFolderAsync()
Hello, I'm using ListFolderAsync() to fetch all albums of Dropbox authorized account in my application and its returning too but the issue is when I'm using: var list = await dbclient.Files.ListFolderAsync(path, true); then i'm getting 20 albums with names etc. But when I'm using: var list = await…
-
Why Delete Method is not working according to Doc?
Hi, I am trying delete according to instruction from DropBox client?.files.deleteV2(path: "/test/path/in/Dropbox/account").response { response, error in if let response = response { print(response) } else if let error = error { switch error as CallError { case .routeError(let boxed, let requestId):…
-
steps to uplaod text files from C# web application
Hi, I want to upload some text files from my C# .Net web application to dropbox account. I have created dropbox App but don't getting clear idea how accomplish that. Please help me to provide steps to upload files from C# .Net web application to dropbox account. Thanks! Naveen
-
Switching users in app
Hi All is it possible (in a test app) to login as user 1, view files etc, then log out and log in as user 2, view their files etc? My app is using an OAuth2 flow in .net, its a windows forms app. during the authentication routine, it opens a browser window and presents the login page. the access token is then kept to…
-
How do I set the Redirect URI port number?
Dropbox You have configured a Redirect URI for OAuth2 authentication. - http://127.0.0.1 - http://127.0.0.1:port I have coded the following code in C #. ---------------------------------------------------------- string redirectURI = "http://127.0.0.1:56207"; string requestURI =…
-
Webhooks think any non-200 is an error, even 204's
Hi, I am sending Dropbox webhooks to an existing webhook endpoint which returns 204 responses to all requests. Dropbox sees this as an error, and then retries the webhook repeatedly. A 204 status code is the most accurate one for my endpoint, as it doesn't return a request body. Could you update the webhooks to accept any…
-
Invalid version of Newtonsoft.json with Dropbox.API v4.0.30319
Hi, I'm getting the following run-time error when trying to upload a file to Dropbox using the DropBox.API for .NET. Could not load file or assembly 'Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the…
-
Mount a folder from a shared link
Hello, I have a shared folder with a link within my work Dropbox, with some "get started" files and subfolders. https://www.dropbox.com/sh/c8lxhn68sdfduvp/AADwI1wTcLYWSeJVW9zZuiFha?dl=0 We have an app with full dropbox access for our customers. I would like to create a copy of this shared folder to a specific folder (like…