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
0 answers

Dropbox redirect URI does not redirect for login, instead returns code of last user

I am using Dropbox Code API version 2 from NodeJS application. I am using OAuth 2.0 with code grant approach. It seems to behave randomly. The use case is as follows: My server generates a redirect uri and sends to my client. User clicks on…
fah
  • 13
  • 3
0
votes
1 answer

Dropbox API v2 Android - How to list files inside a sub-directory

My AppFolder contains two sub-directories: Folder1, Folder2. Each of the folders (Folder1, Folder2) has a bunch of files inside. I wanted to get a list of the files inside each of the sub-directories. How do I check if Folder 1 for example contains…
João Cartucho
  • 3,688
  • 32
  • 39
0
votes
1 answer

Dropbox .NET SDK failed to install (One or more packages are incompatible with .NETCoreApp,Version=v1.1.)

I would like to use the DropBox SDK (https://github.com/dropbox/dropbox-sdk-dotnet ) in my c# project. When I add using NuGet, I get the following error: Package Dropbox.Api 4.3.0 is not compatible with netcoreapp1.1 (.NETCoreApp,Version=v1.1).…
Brendan
  • 85
  • 6
0
votes
1 answer

Reading the contents of a dropbox shared csv file with Python

I am new to Dropbox API. A colleague has shared a dropbox folder containing large (various sizes between 450 MB and 17 GB) csv files. I want to read the files on Dropbox without downloading them. I tried many things including reading the Dropbox…
azuber
  • 389
  • 4
  • 12
0
votes
1 answer

Missing CSRF token in session

I am creating the application which can fetch the files and folder from the dropbox and will show in the web page.I have the below code. $appInfo=new Dropbox\AppInfo($dropboxKey,$dropboxSecret); //store CSRF token $csrfTokenStore = new…
user8170058
0
votes
1 answer

Dropbox API v2 /delete in Google Apps Script

I'm learning about Dropbox API v2. When I tried type the delete command, file was deleted successfully. https://www.dropbox.com/developers/documentation/http/documentation#files-delete curl -X POST https://api.dropboxapi.com/2/files/delete \ …
mkoda
  • 3
  • 1
0
votes
1 answer

How to trigger the Dropbox option to upload when select file

How can we trigger the Dropbox option to upload when select the file from my application using xamarin android? The Dropbox should be trigger if Dropbox app is installed already in mobile.
Melody
  • 1,203
  • 2
  • 17
  • 28
0
votes
1 answer

The Content-Security-Policy directive 'worker-src' is implemented behind a flag which is currently disabled

I am trying to get the files and folders from dropbox based on the user permission.I am developing the API for that. In the dropbox apps i have created the application.And i got the App key,App secret.And also i given the redirect url as my…
lalithkumar
  • 3,480
  • 4
  • 24
  • 40
0
votes
1 answer

How to implement pagination for folder contents in dropbox api

Is there any api call for implementing pagination for dropbox folders? Currently, I use ListFolderAsync to iterate over a folder’s contents where retrieving contents of large folders is very slow. ListFolderGetLatestCursorResult doe not return any…
Atihska
  • 4,803
  • 10
  • 56
  • 98
0
votes
1 answer

How to identificate if it's a Dropbox auth?

I'm planning to use different storage types in my app. I'm starting from Dropbox. It have useful method, which goes to intent, authorize user, and returns to the last activity: String key = settings.getString ("dropbox_key",…
Acuna
  • 1,741
  • 17
  • 20
0
votes
1 answer

Issue in Downloading File In Dropbox Version 2 Php Api

Hy Everyone, I am using this code to download file from Dropbox Version 2 Php Api.But I don't get success yet in File downloading.Lets have a look on the script which i am using function dbx_get_file($token, $in_filepath, $out_filepath) { $out_fp =…
Shaniawan
  • 243
  • 2
  • 16
0
votes
1 answer

Dropbox Python API: download public Dropbox folder

I'm working with Dropbox's Python API. My end goal is that, given a link to a public dropbox folder (not saved in my Dropbox account), my program can download each image to a local Desktop folder. Many of the Dropbox API calls require a path. …
vchen
  • 3
  • 1
  • 4
0
votes
1 answer

No valid operation is selected by Dropbox connector in mule

I try to create a simple application using Mule. Anyway when I select operation "Authorize" I got error. But if I select another operation it works fine!! I have Mule Server version="CE-3.8.1" and use Anypoint studio Version: 6.2.5 The Complete…
R.Almoued
  • 219
  • 6
  • 16
0
votes
1 answer

System.Configuration.ConfigurationErrorsException was caught during uploading file to dropbox using windows service

This Code is working fine with console application, but I am getting error with windows service saying Configuration system failed to initialize(System.Configuration.ConfigurationErrorsException was caught) private static async Task Backup() { …
Dutt93
  • 118
  • 10
0
votes
1 answer

Set expire date to temporary link of Dropbox api

Now I'm using Dropbox API v2 with curl + PHP to get a temporary link of files. Does anyone know how to set the expire date of these links?