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

Get EmailId from UID?

I got the following from fiddler whenever I try to login to dropbox. [{"uid": 663175210, "sess_id": 272608865417613682242215474540606531660, "expires": 1495277184, "team_id": 2059286, "role": "work"}] Notice that uid is being passed. I did some…
Jude Aloysius
  • 131
  • 1
  • 14
0
votes
1 answer

OAuth throws null reference exception

Lately the Nemiro.OAuth api is throwing null reference exceptions for some reason. After getting the lates versoin Nemiro.OAuth v1.12.0 and Nemiro.OAuth.loginForms v1.6.0 it started to behave like this, haven't changed my implemented logic in any…
Mr. Blond
  • 1,113
  • 2
  • 18
  • 41
0
votes
1 answer

AS3: Sending empty Content-Type header in urlrequestHeader

I want to download file from dropbox api. Below is the snippet of my code. var oauthHeader:URLRequestHeader = OAuthHelper.buildRequestHeaderWithToken(config.accessTokenKey); var urlRequest:URLRequest = new URLRequest(); var…
0
votes
1 answer

dropbox V2 DBFILESmetadata for loop not incrementating

I'm having difficulty figuring out how to incorporate a counter so the "setObject" increments it's 'Save' in this for..loop. NSMutableArray *NewArray = [NSMutableArray new]; NSMutableDictionary *dict = [NSMutableDictionary dictionary]; …
Michael Robinson
  • 1,439
  • 2
  • 16
  • 23
0
votes
1 answer

Does Dropbox API V2 Still Support Sandbox?

I'm working for an app that needs to transition to V2 support. In V1 there was a sandbox option, where Dropbox would create a directory for the app under the apps/ folder. I'm not seeing this option in V2, though I could just be mistaken. But while…
devbanana
  • 466
  • 4
  • 14
0
votes
1 answer

File Download from Dropbox

I am going to download file from Dropbox. they have provided their API for this but I am getting ERROR 400. My code is: RestTemplate restTemplate = new RestTemplate(); RestCall re= new RestCall(); ClientHttpRequestInterceptor ri = re.new…
Vivek
  • 56
  • 2
  • 10
0
votes
1 answer

Not able to get Devices information from Dropbox API

My Dropbox account has been connected/synced with various devices.I want to get the devices information like most recent activities. I tried Dropbox's HTTP API endpoints as explained in…
Balachandran
  • 160
  • 2
  • 15
0
votes
1 answer

dropbox api error occured in Maximum execution time of 30 seconds exceeded

Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\beproject\vendor\dropbox\dropbox-sdk\lib\Dropbox\Curl.php on line 71
0
votes
2 answers

Display images from dropbox with javascript api

I'm trying to create a page that could show all pictures in a dropbox folder through the Javascript API. I was able to set up my dropbox app properly, and I am able to get a list of files. I'm stuck at the part to get a URL I could actually use to…
mesqueeb
  • 5,277
  • 5
  • 44
  • 77
0
votes
1 answer

Android Dropbox V2 NetworkOnMainThreadException

I've been struggling to get Dropbox V2 to work with my app for a while now and I'm not sure what else I can do. I've basically followed the online tutorial and other sources, but I keep getting errors keeping me from progressing further. The weird…
Dominic
  • 31
  • 1
  • 5
0
votes
1 answer

Feeding Access Token into list_folder method, Dropbox API

I'm making a small python script to list all files recursively within a user's Dropbox account. The OAuth2.0 flow works, but I am frankensteining in another call to the list_folder method to list those files/folders. I'm stuck at like 22 where I…
tbw875
  • 359
  • 3
  • 5
  • 12
0
votes
1 answer

Offline sync with Dropbox API v2

With the Dropbox Sync API there was a method [DBFile writeContentsOfFile] which would sync the file at a later time if the internet connection was offline. Is there a similar function in the new Dropbox API v2? I've found a method on DBFilesRoutes…
tomblah
  • 791
  • 3
  • 9
  • 21
0
votes
1 answer

Read Files From Dropbox through Mirth

I have a requirement where I need to read the HL7v2 files stored in sites like dropbox. One way to do this is to download the file from that site and access it via SFTP through Mirth. But that process is tedious, imagine I will have 1000's of file…
Vibin Guevara
  • 778
  • 10
  • 27
0
votes
1 answer

Convert dropbox get_thumbnail response to img

I'm trying to convert the response of the dropbox get_thumbnail api to an actual img tag in my page, actually the response returned from the api has a shape like the following ����JFIF��C %# , #&')*)-0-(0%()(��C …
Brakko
  • 43
  • 1
  • 7
0
votes
1 answer

How to preview the files from Dropbox folder

I have added some files into my folder in Dropbox account. Beside of each document I have put a download button to show the files in Dropbox folder. I have tried with sharelink with settings in Dropbox API, but it works only for one time. If i click…
Reshma
  • 189
  • 2
  • 5
  • 18