-
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…
-
Is it possible for /delta or any other API to return just the first-level children of a given pa ...
th_prefix? I am trying to create a list of files/folders for a given path. I only want to have the first-level or the direct children of the path. But, the /delta API seems to be doing a DFS.
-
Upload a directory including all its files and sub-directories
I’m trying to upload a directory to Dropbox along with all its contents including any sub-directories and its contents using the Python API. I can upload files OK and even create new Dropbox folders. I wonder if anyone has a solution for this. Any help or code examples would be greatly appreciated. Below the error message…
-
Dropbox integration using REST API in web appication
Sir, I have done authentication using REST API and OAuth 2.0 and get Access Token and Access token secret . Now I want to retrieve all files present in dropbox and show them in my web application in list form. Please help me as soon as possible Thank you
-
Android API File Upload
We are working to developing an android application for physical photo printing. I would like to leverage Dropbox to act as our file repository. Using dropbox core api's( for android ), is it possible to upload selected photos from users phones to a shared folder on dropbox? The photos uploads will happen on new folders(…
-
Future of API folder sharing
Creating a shared folder via the API is currently impossible (please correct me if I am wrong). However, this is possible via the create folder flow on dropbox.com and the mobile application. With the recent release of viewing shared folders via the api (/shared_folders) is it reasonable to expect that creating and editing…