-
How can I check to see if a file already exists with Dropbox Sync iOS API?
I would like my app to test whether there is already a file at certain path before trying to upload a file to that path. How could I do that? I have an array called sortedFiles. Then I have int i = 0; do{ NSString *fileName = [NSString stringWithFormat:@"Pace audio/%@", [[sortedFiles objectAtIndex:i] objectForKey:…
-
Dropbox Sync API
When I updated a file from a device app which is registered with same app key then the same file from one other device not get notified that it is changed but when i change the same file from Dropbox it self it get notified. Below is my code [[DBFilesystem sharedFilesystem] addObserver:self forPathAndChildren:pathDB…
-
iOS 64 bit compatibility arm64 Core API
Hi, I have downloaded latest SDK of drop box Core API and dumped into my project for 64 bit compatibility. But now it is showing several errors in rest Client. Please help me.
-
File upload/download and database storage in Dropbox
Hi, I am developing an app in iOS. My requirement is as follows: I want to upload images and also download images. Also I want the ability to store the database structure in dropbox. So that if my app gets deleted and when I re-install the app only I have to link that with my dropbox account. Then I will get all the data…
-
How To Get Upload Progress Of A Uploading File With Dropbox Core API?
I'm currently using PHP + jQuery + Ajax to upload a file to my own dropbox account using localhost. I need to know how can I add a progressbar to this. Is there any way to do this? Currently I'm uploading files like this: // all vars declared and initialized above$result =…
-
Get log-in name of user using core API
Is it possible to show the log-in name of the user using the core API, as i need to show the login name of the current user.
-
Download resized image
With the current Dropbox SDK we can download images but in full size, but is there a way to download a resized image. There are a few reasons why this is necessary: - Most of the times people don't need the full size image. - Having a smaller file means the user will see the image faster. Reverse engineering the Dropbox…
-
Are there any examples of the Sync API and Datastore API being used in the same project?
I have found examples of projects using EITHER the Sync API or Datastore API - but not an example using BOTH at the same time. The reason I ask is that I had trouble trying to use both at the same time. My code all looked correct as per the tutorials, the files were syncing, local datastores were being created just fine,…
-
Uploading files to my predefined dropbox account bypassing authorization page
Hello greg, I am a iPhone developer, i want to upload files to my predefined dropbox account bypassing authorization page. I want to handle the authorisation inside my app. I have checked the solution for this in stack…
-
DBFile Mime Type?
Is there any way to get the mime-type of a DBFile? Ideally, it'd be nice to query from the DBFileInfo so I can know before I download it. But if that's not possible, can I get it from a file I've downloaded? I'm using the iOS Sync API
-
Dropbox as python app filesystem
Hello guys I wrote an app with Flask/python and deployed on Heroku. Than I realised Heroku destroys files written within its filesystem. So I thought I could maybe use dropbox for uploading and deleting users avatar images. I need to to something like the following: Delete avatar of user: image = 'static/uploads/' +…
-
What are supported extension for dropbox files?
Need to know what are the supported extension type ( say .txt or .ppt ). Wanted to know all the supported types. This is with respect to core APIs
-
Dropbox chooser completion handler not firing
I'm able to bring up my dropbox account, but when I pick a file, nothing happens, like the completion handler isn't firing. Here is what I have. I initialize with my own key because I'm using the Sync API as well, so I have two keys. - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url sourceApplication:(NSString…
-
Public link for files in dropbox
How do I get the public link of each file in dropbox? Is there a formula to create a public link for the files?
-
Default access permission for a folder created using /fileops/create_folder for a Business user?
If my app uses /fileops/create_folder to create a new folder and I am connected as a DropBox for Business user, what are the default access permissions given to the new folder?