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

Login and getting file from Google Drive or Dropbox by using Qt/QML in Android and iOS

I am developing app for Android and iOS by using QML/Qt 5.9.1. We want to login the Google Drive and download and upload some file. Of course, we must can select file from my App. Hence, I am trying to use the 3rd part library. Hence, my first thing…
0
votes
2 answers

Dropbox API - Force Direct download

I using the dropbox API to upload files into dropbox and then generate a shareable links and sending those to the users. But the issue is I want to force download the file instead of preview via dropbox share link. I know I can force download…
Skywalker
  • 4,984
  • 16
  • 57
  • 122
0
votes
1 answer

Dropbox OAuth API v2 not working on Google Cloud Platform - Datalab - iPython Notebook

Referring to the tutorial at Dropbox for Python Developers I am using Google Cloud Platform, datalab. CODE: dbx = dropbox.Dropbox() dbx.users_get_current_account() OUTPUT: ValueError: Timeout value connect was…
0
votes
1 answer

'Error in call to API function \"files/list_folder\": This app is currently disabled' on iOS

I have that message error, but I don't understand why it comes. I reinstalled a new version, and I use that code to check if it is well authorized to DropBox: if (([DBClientsManager authorizedClient] && [DBClientsManager authorizedTeamClient]))…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
0
votes
1 answer

Dropbox delta user ID

We are receiving the following JSON from dropbox webhook. We don't know what does it mean that delta user information: { "list_folder": { "accounts": [ "dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc", ... ] }, "delta": { …
Lechucico
  • 1,914
  • 7
  • 27
  • 60
0
votes
1 answer

Dropbox picker has started opening in new tab rather than new window in Chrome

I want to open Dropbox picker in new modal window which is working fine in all browsers other than Chrome. Can anyone help me why in Chrome it opens in new tab? How can I force it to open in new window, is there any parameter in options which I can…
Rehan
  • 197
  • 1
  • 7
0
votes
0 answers

Dropbox API - Upload file but no content (Zero KB) inside it

Using Chrome Extensions - Background Javascript, i write below code to Upload images file to my Dropbox. I also provide generated token from my apps. Below are the codes: var http = new XMLHttpRequest(); var url =…
questionasker
  • 2,536
  • 12
  • 55
  • 119
0
votes
1 answer

Dropbox access token questions

I'm currently using the dropbox api, and got some doubts about oauth access token: Does the access token expire? I just need to save the access token, or I need something else? (authorization token, user id...) What happens if I lose the access…
Lechucico
  • 1,914
  • 7
  • 27
  • 60
0
votes
1 answer

Securing Javascript API key

I'm using the Dropbox API in a current project & I intend to push & host on github. Do I need to secure the access token for the API & if so, how do I go about this? var Dropbox = require('dropbox'); var dbx = new Dropbox({ accessToken: '####'…
r_cahill
  • 577
  • 3
  • 9
  • 20
0
votes
1 answer

Add dropbox webhook by code

We're exploring dropbox api reference. Concretly, we're exploring webhook possibilities. We're not quite to know how to specify a webhook url by code. We are lokking for a way to add this webhook url avoiding user has to do it manually. I hope I've…
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
0 answers

FileNotFoundException : /storage/emulated/0/xyz/a bc/abc_06-07-2017 06-12-121481589883.amr

I am trying to upload file from my device storage to cloud but whenever I try to upload I am getting following excaption. java.io.FileNotFoundException: /storage/emulated/0/xyz/a bc/abc_06-07-2017 06-12-121481589883.amr: open failed: ENOENT (No…
Sandip Armal Patil
  • 6,241
  • 21
  • 93
  • 160
0
votes
1 answer

Retrieve Dropbox Images in Website with png or jpg format

I have build a app. With that app i upload image to Dropbox. Each user has a Profil image save in Dropbox. I Save the Referenz in the Server to know which Image is for each user. Now i want to Display that image in my Website in Format png or jpg. I…
0
votes
1 answer

Xamarin Android DropBox OAuth2Authentication Error

I'm trying to upload a text file to Dropbox using my android application. Which is developed by Xamarin & Visual Studio 2017. When I try to run the application it gives this exception Java.Lang.IllegalStateException: URI scheme in your app's…
0
votes
1 answer

Dropbox oAuth instant 302 redirect

I'm trying to get an access token from Dropbox, it works on localhost, not on a live server. The Dropbox oauth grant screen doesn't get show, instead Dropbox returns a 302, here's the response: I sending the user to:…
nick
  • 3,521
  • 3
  • 22
  • 32
0
votes
1 answer

Is it possible to get files from Dropbox and Google Drive files application in IOS sdk

I'm developing an application in which the user can select his/her file from Dropbox or Google drive and download and share it to other users. Can we check that is Google drive installed as we can check dropbox with help of below code :- if…
gurmandeep
  • 1,227
  • 1
  • 14
  • 30