Questions tagged [dropbox-api]

The API for Dropbox, a file syncing, sharing, and backup service.

The Dropbox API allows developers to build functionality directly into their apps. The API provides methods to read and write from securely. The API allows access to features such as file uploading, downloading, sharing, searching, and restoration. The API can be used across platforms such as , , , , or any other that can make HTTPS connections.

More information, including the specification of the Dropbox API interfaces, usage guidelines, and developer tools such as official SDKs can be found on the Dropbox API website

2379 questions
0
votes
1 answer

Dropbox error using upload session

This is the modified code about uploadsession soo at small size file it working like a charm but when I try larger file like 5mb up. The following error keep showing up : +$exception {"lookup_failed/closed/..."} System.Exception…
0
votes
0 answers

how to convert DBmetadata in NSdata?

-(void)restClient:(DBRestClient*)client loadedFile:(NSString*)destPath contentType:(NSString*)contentType metadata:(DBMetadata*)metadata this function of dropbox api is giving me metadata. I want to convert this metadata as NSData to send through…
aditya
  • 13
  • 7
0
votes
0 answers

Upload a file from system directory to dropbox web account

I have a script with create a file on server directory (in testing on system xampp server directory). I want to upload or move that file from system directory to dropbox account on web directly. I don't want to place on default Dropbox root folder…
Nishant
  • 19
  • 8
0
votes
0 answers

Upload folder using uploadsessionstart via dropbox api (vb.net)

Im trying to make some upload folder function using dropbox api within my vb.net application. i already got the code but it just for the file. can you guys help to solve this problem ?, what function i shoul use ?. this my code Public Async Sub…
0
votes
0 answers

How I check whether directory exists on drop using php?

I am working on dropboxapi in php and try to check the directory exists or not:
Nishant
  • 19
  • 8
0
votes
1 answer

How to open Dropbox app from an another App in IOS Xamarin?

I am trying to open the dropbox App from my app. Here I can link and upload the files into the dropbox correctly. I have a link button to dropbox in my app, on clicking this I can be redirected to the dropbox app, I am using the code below. if…
Sanjeev S
  • 626
  • 1
  • 8
  • 27
0
votes
1 answer

How to use proxies with Dropbox API?

dbx = dropbox.dropbox.Dropbox('***************') f = open("/home/net/a.py", 'rb') data = f.read() res = dbx.files_upload(data, "/a.py", dropbox.files.WriteMode.overwrite) Now, I want to use a proxy, how to do that?
aaa
  • 1
0
votes
1 answer

Dropbox java login

Im trying to integrate the DropBox into my java app but I didn't understood how can I create a general login (email and password each time someone click 'log in'). I used the token to access data from my account, but now I want get from anyone who…
Carol
  • 13
  • 4
0
votes
1 answer

Move one file or folder from one location to another by passing path as a argument in PHP working with Dropbox API?

I have this piece of code. $str1 = $test."\\".$actualfilename; $str2 = $finalPath."\\".$folder."\\".$subfolder; $source = mb_convert_encoding($str1, "UTF-8"); echo "
". $source; $dest = mb_convert_encoding($str2, "UTF-8"); echo "
"…
Nishant
  • 19
  • 8
0
votes
1 answer

Why am I getting a blank screen?

I'm following this tutorial on Github to learn how to use SwiftyDropbox, and I've followed the steps to the point where I should be able to run the app, and I log into Dropbox. However, when I run the app on my phone, I just get a blank screen. Can…
Theodore.K
  • 384
  • 2
  • 7
  • 21
0
votes
1 answer

How to migrate from Dropbox API1 to API2 - Objective C

With the impending demise of the Objective-C API for Dropbox I am looking to migrate a few simple calls. I was able to migrate to the authenticate without issue, but am having trouble finding replacements for the following API. Was hoping someone…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
0
votes
1 answer

Dropbox API v2 /delete

I'm learning about Dropbox API v2, testing the commands and etc to practice. When I tried to type the delete command (https://www.dropbox.com/developers/documentation/http/documentation#files-delete): curl -X POST…
0
votes
1 answer

Dropbox last modification with Java API

I am writing a Dropbox console application. I need to find last modification for my account. I can get file metadata with date of last modification, like this: DbxEntry.WithChildren listing = client.getMetadataWithChildren(path); for (DbxEntry child…
Dzoul
  • 33
  • 4
0
votes
1 answer

Get list of shared Dropbox folders with Java API

I am writing Dropbox console application in Java. Is there any way to get list and quantity of shared folders for my Dropbox account?
Dzoul
  • 33
  • 4
0
votes
1 answer

Still getting the error "No such module 'SwiftyDropbox'"

I'm having the same problem as this question . His problem is almost identical to mine. In fact, we're following the same tutorial. However, the answer that solved his problem didn't work for me. I opened up my project via .xcodeworkspace and I'm…
Theodore.K
  • 384
  • 2
  • 7
  • 21