-
List Folder Latency
Hi, I'm using listFolder V2 API with include_media_info. It is very slow (few seconds to get 2,000 items) and I'm wandering if this is because my app has not been approved for production. V1's metadata (with list option true) was a lot faster and I'm trying to see what the expected latency is for these calls. Thanks.
-
Problem while using Sharing functions in dropbox java api v2
I am trying to use the sharing options provided in the Dropbox java api v2. But everytime I get an error saying "String 'id' does not match pattern" on almost all the functions I tried uptil now in sharing. Following is code snippet : ListFoldersResult shr_result = client.sharing.listFolders();…
-
file list from a folder ?
I am getting the files from rootfolder of dropbox using following code but now i want to get the list of files from a specific folder .How can i do it in .net? using (var dbx = new DropboxClient(user.DropboxAccessToken)) { var list = await dbx.Files.ListFolderAsync(string.Empty); }
-
Can I prevent my links getting banned, using the API?
I know that if my shared links generate too much traffic. It will be banned. I'm using Dropbox (Basic 50GB) as a server for my application to run which i'm sure will generate a lot of traffic. But, can i overcome this by using the Dropbox API.
-
Please Deprecate Dropbox-Api-Arg header in V2
Content-style endpoints accept parameters in JSON format using Dropbox-Api-Arg header. But HTTP header is not for transferring arbitrary data. Some JSON writers(serializers) produce character sequences which are not valid as HTTP Header values. So Please stop sending JSON Text directly as HTTP Header values. Some encodings…
-
Refused to display 'https://www.dropbox.com/1/oauth2/authorize?response_type=code&client_id=m5e… ...
71%2Fapi%2FAccounts%2FAuthAsync&state=923c0910-4a2d-4a5d-8093-23468959263f' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'. I am using dropbox sdk to login with dropbox and access its files now the situation is i need to show that login page in a bootstrap modal so for this i am using iframe but its giving me…
-
unknown tag 'xs' Error in API function call - Java SDK GetThumbnailBuilder
I'm recieving an error with the following message whenever I try to build a thumbnail: com.dropbox.core.DbxException$BadRequest: Error in call to API function "files/get_thumbnail": HTTP header "Dropbox-API-Arg": size: unknown tag 'xs' This error occurs after running this line of code.…
-
Adding development users to App Folder application
Hello, I've enabled development users within my application but I'm not sure how to give access to the app folder to them. Any insight? Thanks.
-
Dropbox for Business API Invalid Access Token
I'm writing an .Net app but I'm not able to authenticate with a Dropbox for Business app. I have created an app in the App Console. * App type: Dropbox for Business * Permissions: Team member file access I then pressed the "Generate" token button to begin testing my app. I'm using the eaxmples from dropbox-sdk-dotnet…
-
Dropbox for Business Token: Access token is for an invalid team
Hello! I'm writing an app against Dropbox APIs but I am struggling to authenticate. I have created an app in the App Console. * App type: Dropbox for Business * Permissions: Team member file access (I have also tried Team member management) I then pressed the "Generate" token button to begin testing my app. Whenever I…
-
Wrong character case of folder name when calling listFolder using Sync API
I'm traversing a folder hierarchy and have come across a strange anomaly in the letter case of one of my folders. When I call listFolder to get the hierarchy of my folders, everything seems normal until it gets down to the third level. For example, when I fetch the 2nd level in the hierarchy, I get the correct case for all…
-
Copy the authorization code.Where it is sufficient to copy?
-
API v2 removed file type permissions
Out of curiosity, can anyone from Dropbox explain why API v2 removed file type permissions? In v1, an app can request to only access image files (more info here). This gives the user confidence that the app won't do anything inappropriate using their Dropbox account. If an app only wants to access image files (like how…
-
Your app is not currently allowed to use the API v2 beta API. error from SwiftyDropbox v1.0.2 af ...
ter upgrading Xcode to v7.2 Since upgrading Xcode to 7.2, I have not been able to download my test text file from Dropbox with my app via the iOS simulator or on device. The error message is: Download error: Optional([request-id b1786dbc15c95f302d9397134c3406b2] Bad Input: Error in call to API function "files/download":…
-
SwiftyDropbox API Error
After doing all the steps you indicated here --> https://blogs.dropbox.com/developers/2015/05/try-out-swiftydropbox-the-new-swift-sdk-for-dropbox-api-v2/ I could logged in a client successfully but then if I want for example to retrieve user's data with client.usersGetCurrentAccount function, I always got the same error:…
-
How to change application access type
HI all, I have created an app that enables to access to Dropbox with access type "App folder – Access to a single folder created specifically for your app.". Now I want to change the application permission to access type "Full Dropbox– Access to all files and folders in a user's Dropbox." How can I do that? I do not see…
-
java api+tomcat: HttpsURLConnectionOldImpl cannot be cast to HttpsURLConnection
When using the client API on a web app under tomcat, it would seem that all client requests I've tried so far give me this error: com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnectionOldImpl cannot be cast to javax.net.ssl.HttpsURLConnection For example: using a string token created from the control panel for…
-
Can I Create App With My FUll Storage 1TB
I Have Pro Account, But While Create App, App Show Me 2GB Space, Can I Use 1TB Space In App ?
-
Planned Maintenance this Saturday, Dec 5
Please see this announcement for details: https://www.dropboxforum.com/hc/en-us/articles/206534173-Planned-Maintenance-this-Saturday-Dec-5
-
A task was canceled when downloading large files.
In my .net(C#) application I am trying to download the files from the dropbox using dropbox client and its working fine with the small files like 10mb but when i try to download larger files then its giving me the "A task was canceled." and i think this exception is related to timeout.How can i solve this issue beacuse i…
-
How can I tell if a file is completely downloaded?
I have a client that I'm in the beginning stages of writing an app for. I'm going to be using DropBox to distribute video files to remote servers that will automatically play all of the video files in the media folder back. I don't need to upload files or do any sort of authentication. What I do need, however, is to know…
-
API V2 Can't get large file Upload working
Some context for the following: 1) DBAPIMetadata is just my wrapper for Files.Metadata that I can pass to Objective-C 2) The BGHelper at the end (when the call is not on the MainThread) just call the function On the main thread and blocks the background thread until it completes. Basically any calls on the main thread are…
-
How to setup expire of shareable url for dropbox resource?
Is there a way to setup expiration time of URL at Dropbox? I'm using DbxClientV1 to create a URL. DbxClientV1 client; client.createShareableUrl("/RVAdata/test/test/Daily_Summary_Reports/Modified.pdf")); DbxUrlWithExpiration createTemporaryDirectUrl =…
-
async usage in examples
I have a question regarding the API v2 examples as a whole. All of the examples supplies use async calls. even for login. However you use task.wait() after the Task creation which essentially makes the call synchronous as the program waits for the task to complete. You use async threads if those threads do operations that…
-
HTTP API v2 files/search: not recursive until select top-level folder?
I'm using v2 of the API and running into an unexpected situation with the files/search HTTP endpoint. Wondering if this is a configuration issue or expected behavior. I'm trying to list of a user's files of a certain type. With v1 of the api, you could set path: '' and query: '.xls'. When I use v2 of the API and hit the…
-
The operation couldn’t be completed. (dropbox.com error 1000.)
I am developing an app that uses Dropbox SDK to download files from user dropbox account. I am able to list contents and contentMetadata, but when i try to download them i am always getting the following error: DropboxSDK: error making request to /1/files/dropbox//SuiteJuridica/navigationBar-start.png - (1000) Error…
-
Dropbox Chooser on Cordova
There is not any workaround with the response : {"error":"invalid_origin"} when tryng to use Dropbox Chooser on a cordova app ?
-
SwiftyDropbox Error Handling
Hello! I’ve been working with SwiftyDropbox and I’m having a curious problem with errors. Specifically, I’m not sure how to manipulate errors in the closure callbacks provided after responses are received. For instance, the completion handler for Dropbox.authorizedClient.filesListFolder provides a…
-
Delta reset field in API V2
Hi, In the API V1 the /delta call returns a field called reset which I can't seem to find in V2 when I look under the /list_folder methods. Is this or similar information available in V2 API or not? Need to know if the delta has been reset since the last delta retrieval. Thanks.
-
Getting error: "This app is not allowed to query for scheme dbapi-2" after upgrade to version 1. ...
3.13 for iOS I recently upgraded my dropbox SDK to version 1.3.13 to support 64-bit devices. However, I am now getting the error: -canOpenURL: failed for URL: "dbapi-2://1/connect" - error: "This app is not allowed to query for scheme dbapi-2" Do I need to generate a new key to use this version? Thanks