-
PHP Dropbox API for invite to share files or folders
Hello, I'm developing application which has functionality to invite user to share files or folder on particular email address. ex. User A send invitation of folder sharing to User B. User B will get notification in their dropbox account to accept or decline share invitation . I want to develop send file or folder share…
-
Redirect URI registration
Do we always need to register redirect uri in our console for the authentication process? For the case when many servers use my dropbox app, may I know how to deal with many redirect uri? We cannot afford adding up the IP addresses of all servers who want to authenticate.
-
Get notification when any files were uploaded
Currently, Dropbox API help us to download and upload file to dropbox. But, I need a trigger on my application, when a files were uploaded to dropbox. Can we do that?
-
Copying folders which contain images via API (from copy_ref) returns 500 errors as of September ...
1, 2015 As of Tuesday night, the API copy call returns 500 errors for paths which are folders and contain images. Removing all images solves the problem in the cases we've tested.
-
Internal server error when using delta API
We've been seeing Internal Server Errors when trying to fetch files via the delta API over the past week for some specific accounts. This has been occurring consistently for at least the past 10 days, but was working fine prior (and it still working fine for other accounts). Example: druidbox.delta…
-
Check if folder exists and collect shared folder
Hello, 1.I'm trying to check if folder exist in my dropbox by retrieving metadata from given path: (example path "/myfolder") public async Task<Metadata> GetFolderMetadata(string folderPath) { Metadata folderMetadata = await client.Files.GetMetadataAsync(folderPath); if (folderMetadata != null) return folderMetadata;…
-
How can I mock DbxClient class using Mockito when it is final?
For purpose of testing I would like to mock DbxClient class using Mockito but it is not possible. The problem is that DbxClient is final and doesn't not implement any interface. Can you please fix it?
-
file_copy is changing case when searching for local path
I'm writing a sync client (in Ruby) to copy a folder from local to Dropbox. My code is as follows: file_copy(settings['local_folder'],settings['remote_folder']) I get the following error: in `parse_response': Path '/home/user/projects/clients/' not found (DropboxError) This is true; that folder doesn't exist. It's…
-
Chunked upload with HTTP requests
Hello, I am trying to implement chunked upload utilizing HTTP requests and find myself in trouble with chunked upload. The upload itself seems to work fine, i am able to go through the flow and receive 200 response and uploaded files metadata after calling commit_chunked_upload, however the uploaded file(s) seem(s) to be…
-
CSharp SDK dbx.Files.UploadAsync doesn't work
Hi, I've installed the CSharp DropBox SDK in a Console App (in part of my CI toolchain, although created in Visual Studio 2013 it is sitting in a Xamarin solution that is built using Jenkins on Mac using .Net v4.0.30319). I call the dropbox SDK immediately after successfully copying an iPhone .IPA to a temp directory so…
-
A Python 3 fork of the Python SDK
Hi everyone, Based on this conversation ( https://twitter.com/Ewjoachim/status/600065382821552130 ) I had a few days ago, I'm forking the SDK to add the fixes for python 3 while waiting for Dropbox to release a proper version. Anyone interested can contribute using usual means. Fork can be found here :…
-
How to get access token from browser?
Hi, I'm using your new .net sdk v2 Dropbox.Api . I want to open the browser with authorize uri , then login and then get all the uri and parse it with your function called ParseTokenFragment(). It is possible? Or maybe is another solution . All I want is to avoid creating a WebBrowser control in my application and then…
-
Get access_token problem
While getting access_token for my app, error(500) occured. Please let me know the reason. I'm developing an app using dropbox cloud. Until now, there was no problem. But since this error occured, I can't go on developing. Please help me.
-
Ambiguous call
Hello Dropboxers, I'm trying to use your method to get authorize uri fromDropboxOauth2Helper class. If I make a call like DropboxOauth2Helper.GetAuthorizeUri(OAuthResponseType.Token,myAppId) I get ambiguous call . Is there a way to avoid this without creating in my app a redirect uri? Thank you
-
How to add a folder to dropbox?
Hi there Dropboxers, I'm trying to create a folder directly to my box from your server. I have the DropboxClient client and the AccessToken , but the method : client.Files.CreateFolderAsync("NewFolder"); doesn't work . Maybe the path that I'm providing is wrong ? How it should look ? Can you give me a correct example call…
-
Missing Push Notification Entitlement mail from Apple
Hello, after adding the Dropbox SDK to my project, when I upload my app to iTunes Connect I receive a mail from Apple informing me that my app is missing the push notification entitlement if I or a third-party framework is using API that refers to the push service. Since my app has no push notifications service enabled,…
-
Login and authenticate without browser
Is it possible to login to Dropbox and authenticate/allow an app to access files in dropbox without a browser? Like via ajax or curl? I am thinking if there will be no UI.
-
Generated Access Token not working for authentication (Python)
Hello, I generated an access token on my app page, but it does not seem to be working. I am using it in place of the token that is normally generated when give it access from the webpage. Here is my current code: import dropboxapp_key = 'xxxxxxxxxxxxx'app_secret = 'xxxxxxxxxxxxx'flow =…
-
Will the v2 API support delta/events?
Will the new v2 API offer support for events/delta? When is that scheduled for release to the preview?
-
Queue Mechanism for Dropox Core DSK?
I'm using the Dropbox iOS SDK and I would like to be able to add a number of files to a queue and upload them to dropbox. I'm using the the Core SDK and I read about a sync mechanism for one of the deprecated SDKs but it does not look like the there is anything comparable for the Core SDK.
-
What is causing dropbox error 401
I just created a new app within dropbox, ( I already had code working for a different account and a different app ) I'm linking the dropbox account in the application delegate NSString* appKey = @mqwun9ewe89n8yla; NSString* appSecret = @07basa4txiewewqo6k; NSString *root = kDBRootDropbox; ( these are fake keys ) and the…
-
uploading video through api not working
I'm using the IOs sdk and trying to upload a small video. It keeps giving me the following error [WARNING] DropboxSDK: error making request to /1/files_put/sandbox/YourFolder/BNaUmF.m4v - (-1005) Error Domain=NSURLErrorDomain Code=-1005 "The operation couldn’t be completed. odly, it seemed to work one time, I didn't change…
-
Webpage that lists contents of shared, public dropbox folder
I'd like to be able to add files into a shared Dropbox folder, and then have my website be able to list and download the contents of that shared dropbox folder. So I don't want there to have to be a user authentication flow. I don't need to access the folders/files of various users. I just need to be able to access the…
-
iOS SDK not uploading to folder path
I'm using "restClient.uploadFile(file, toPath: destPath, withParentRev: nil, fromPath: sourcePath)", where file="someFileName", destPath="somePathOnMyDropboxAccount", and sourcePath="someLocalFilePath". But instead of the file uploading to the designated path, it uploads to "file/file", creating a folder of the same name…