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

Revoke Dropbox access in Java/Android SDK

I can get access token from Dropbox, using this code : Auth.startOAuth2Authentication(getApplicationContext(), getString(R.string.DROPBOX_APP_KEY)); But how can I revoke access to Dropbox from Java/Android SDK?
AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210
0
votes
0 answers

Dropbox api file download and upload to s3

im trying to download the file from dropbox using v2 api and upload it to amazon s3 to download file here is what i did: $headers= array( 'Content-Type: ', "Authorization: Bearer EkOrS5mbVAwA....", …
Wasif Khalil
  • 2,217
  • 9
  • 33
  • 58
0
votes
1 answer

Only 1 folder called in jstree

I'm currently trying the jstree to list my folders in my Dropbox API, but only 1 folder is being display but I have to 2 folders in my dropbox.. But when I console the function console.log(entry); the reposnse is the 2 folders being shown, but when…
VLR
  • 312
  • 1
  • 4
  • 18
0
votes
2 answers

Python Dropbox API Error

I'm getting the error "ImportError: No module named packages.urllib3.poolmanager" when I try to use the "dropbox" package from pip install, and I have listed my pip installed packages here as well.…
user1187968
  • 7,154
  • 16
  • 81
  • 152
0
votes
2 answers

What is okHttp3Requestor

I'm trying upload a photo to dropbox by the code: public static void init(String accessToken) { if (sDbxClient == null)) { DbxRequestConfig requestConfig = DbxRequestConfig.newBuilder("ID") …
0
votes
2 answers

Does VBA support Task.Wait() from a C# class import?

I wrote a C# class which connects to Dropbox and lets you upload, download, delete and generate link files. It's working with a Windows Forms but I have to access it from VBA (Microsoft Access). The problem comes when it goes to task.Wait(). I've…
Gonzo345
  • 1,133
  • 3
  • 20
  • 42
0
votes
2 answers

Dropbox file extension missing after upload of Revit file using UploadAsync()

I am uploading a file with a .rvt extension. using filestream and then UploadAsync(). I can upload and download the file from a folder I generate on the Dropbox remote server using a c# desktop app called from a winform. I can also rename the file…
0
votes
1 answer

Grabbing Dropbox access token on Windows Form using Dropbox API

I have done a class which already works with the Dropbox API uploading files, downloading, deleting and so on. It has been working quite well since I was just using my own access token, but I need to register other users and a single but "big"…
Gonzo345
  • 1,133
  • 3
  • 20
  • 42
0
votes
0 answers

DropboxSDK: credentials not saved

I have follow this tutorila to integrate Dropbox in my app http://www.theappguruz.com/blog/ios-dropbox-integration I had made a demo project before integrate into my main project . its working fine When I add this code into my main project with…
0
votes
2 answers

Dropbox - uploading files from url doesn't work consistently

I have a PHP script that uploads files into Dropbox. When I run it from command-line as a standalone script, it works perfectly. However, when I incorporate my code into the larger project, the file fails to upload, cURL returns "errno" 0 (meaning,…
joemtm
  • 21
  • 2
0
votes
2 answers

Error uploading file using dropbox graham (Laravel)

I've got a form and when I click submit and It calls the controller but this gives me an error: Class 'GrahamCampbell\Dropbox\Facades\Dropbox\WriteMode' not found Also I tried to create a Folder in my dropbox to check If there are some problem to…
Xavi
  • 25
  • 3
0
votes
3 answers

How to write a Dropbox file (through their API) using StreamWriter in C#?

I've been fighting against the Dropbox API and I've made my little steps (I'm new on C#). The thing is that I've finally reached a file on my Dropbox account but I don't know how to create it on my local machine through StreamWriter. Note: I know…
Gonzo345
  • 1,133
  • 3
  • 20
  • 42
0
votes
1 answer

Dropbox API logout then redirect

In a 3rd party app, using dropbox API, I'm trying to handle 2 or more Dropbox user accounts. Which mean I try to logout a user (and keep its tokens valid) then login another. to logout I use : https://www.dropbox.com/logout However, when logging…
nouatzi
  • 735
  • 4
  • 14
0
votes
0 answers

How can I pass the url ajax in form action

Im trying the dropzone to my Dropbox API and I was wondering how to pass the value of my ajax to my form action = "*" Because when I removed the action it said Dropzone : Uncaught Error: No URL provided But when I put my specific endpoint it said…
user7433355
0
votes
0 answers

Open dropbox chooser into jQuery popup instead of window

In asana.com you can see that chooser opens in popup modal but I am unable to do it as my client also wants it to open in jQuery popup. Everything is working fine, I have implemented chooser in my project but only thing is that it opens in new…