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
8
votes
3 answers

How should I store API keys in a Python app?

In my case I'm using the Dropbox API. Currently I'm storing the key and secret in a JSON file, just so that I can gitignore it and keep it out of the Github repo, but obviously that's no better than having it in the code from a security standpoint.…
lavelle
  • 1,446
  • 1
  • 17
  • 30
7
votes
2 answers

Using the dropbox web interface to delete a folder with 30,000 files

I have a folder in my dropbox with 30,000 files, that I can't delete using the web interface. It appears that I have to download all 30,000 files in order to tell dropbox I really don't want them. This error arose because the machine that…
Zach
  • 29,791
  • 35
  • 142
  • 201
7
votes
1 answer

Missing scope error Dropbox API authentication?

I'm trying to download a large Dropbox folder with a bunch of subfolders to an external harddrive using the scripts at: http://tilburgsciencehub.com/examples/dropbox/ import dropbox from get_dropbox import get_folders, get_files from…
user1692094
  • 302
  • 2
  • 5
  • 12
7
votes
1 answer

Error 400 when trying to access Dropbox API via Dropbox Javascript SDK

I have an app that via Dropbox Javascript SDK trying to download the file. I don't have any idea what is wrong. Accessing Dropbox API via fetch calls directly bringing the same error. Dropbox API documentation saying that error 400 is for bad input…
andrey.shedko
  • 3,128
  • 10
  • 61
  • 121
7
votes
2 answers

iPhone DropBox API: How to load a file?

A very basic question concerning dropBox integration into an iPhone app. I followed the setup of the DropBoxSDK and everything works fine. I can log on to my account and get it linked. So I set up everything correctly. Now I would like to use it to…
n.evermind
  • 11,944
  • 19
  • 78
  • 122
7
votes
2 answers

How to compare HMAC SHA256 signatures from request body in NodeJS

I am trying to use Dropbox's API, and I got it to successfully send me alerts via webhooks, but now I want to verify the signatures every time they send me an alert. From dropbox's documentation, they write: "Every notification request will include…
skob002
  • 91
  • 1
  • 1
  • 3
7
votes
2 answers

createReadStream not working/extremely slow for large files

Im using DropBox API to upload files. To upload the files to dropbox I am going through the following steps: First upload file from form to a local directory on the server. Read File from local directory using fs.createReadStream Send file to…
Skywalker
  • 4,984
  • 16
  • 57
  • 122
7
votes
2 answers

Dropbox API: How to use API to get file's shared link?

I have a folder which contains 100+ files, I want to shall them all and get all the shared links, is there anyway to do this?
Xing Shi
  • 2,152
  • 3
  • 21
  • 32
7
votes
4 answers

CocoaPods not importing SDK frameworks properly

I have been trying to import the Dropbox-iOS-SDK into my project through CocoaPods, but the framework file doesn't seem to be imported properly. My Podfile looks like this: platform :ios, '7.0' pod "AFNetworking", "~> 2.0" pod 'Reachability' pod…
Rameez Hussain
  • 6,414
  • 10
  • 56
  • 85
7
votes
1 answer

Access dropbox api without clientside authentication?

I'm trying to create a smooth solution for sharing files with a custom presentation of the files (logos fonts etc). My ideal would be to put the files in a dropbox folder and then have a webpage, on a separate server, access those files over…
Himmators
  • 14,278
  • 36
  • 132
  • 223
7
votes
2 answers

Uploading to Dropbox from Google Drive

As a test case, I'm trying to copy a file from Google Drive to Dropbox using Google Scripts function pushBuild() { // Setup OAuthServiceConfig var oAuthConfig = UrlFetchApp.addOAuthService("dropbox"); …
Pram
  • 2,261
  • 3
  • 31
  • 50
7
votes
5 answers

Locally calculate dropbox hash of files

Dropbox rest api, in function metatada has a parameter named "hash" https://www.dropbox.com/developers/reference/api#metadata Can I calculate this hash locally without call any remote api rest function? I need know this value to reduce upload…
Victor Sanchez
  • 583
  • 9
  • 28
7
votes
1 answer

How to share apps folder to another dropbox user

I am developing an app that can upload and download within dropbox folder the dropbox automatically create an apps folder my question is, how to share the folder to another dropbox user i have tried before, it stated that the apps folder cannot be…
Sieryuu
  • 1,510
  • 2
  • 16
  • 41
7
votes
3 answers

Dropbox integration

I am new to integrating drop box, but I am not quite sure how to generate a call to get the request token secret. https://www.dropbox.com/developers/reference/api#request-token I have to make a call to this url…
jedgard
  • 868
  • 3
  • 23
  • 41
6
votes
6 answers

using dropbox as a server for my django app

I dont know if at all i make any sense, but this popped up in my mind. Can we use the 2gb free hosting of dropbox to put our django app over there and do some hacks to run our app?
user993563
  • 18,601
  • 10
  • 42
  • 55