Questions tagged [dropbox-sdk]

81 questions
0
votes
0 answers

Web link to local dropbox file

Is there a way to create a link (i.e that dropbox will redirect to a local file on my computer if the file is synced? I run my own web server and each web page maps to a folder. i'd like to be able to create a link on that page that opens up…
Hidden Name
  • 354
  • 1
  • 3
  • 8
0
votes
0 answers

DropBox Saver: Button is not showing up. (Angular 6)

I have tried everything but the exact same code works for the standalone application. Here is the code for Profile component:
0
votes
1 answer

Read a CSV file on Dropbox without downloading it

I am developing an application where a user can just provide the path of there drop box file and access token and see the contents of the file. Is it possible to just read the contents of the file without actually downloading it. import…
ankit
  • 1,499
  • 5
  • 29
  • 46
0
votes
2 answers

Dropbox images to s3 bucket using java

We are having a hugh set of images inside dropbox and manually downloading and uploading to S3 is not a practical method.Can anyone suggest the best method to transfer dropbox files with folder to s3 bucket.Java is the technology that we are…
Suresh AK
  • 105
  • 2
  • 11
0
votes
1 answer

Edit file that is uploaded to dropbox in Android

I have a file that is uploaded on dropbox i just want to edit it from my android application. I don't want to download it. File is in form of json formate. E.g I have a file name "Add" Formate : {"slots":[ …
Adnan Ijaz
  • 27
  • 1
  • 8
0
votes
1 answer

Migrating from old Dropbox SDK

I'm migrating from the old Dropbox Obj-C SDK to the new one. I was using the following methods from the old SDK: - deletePath: - uploadFile:toPath:withParentRev:fromPath: - loadMetadata: - cancelAllRequests And a bunch of delegate calls: -…
mahboudz
  • 39,196
  • 16
  • 97
  • 124
0
votes
1 answer

Reduced file size when uploading files using Dropbox Core API v2

We are using Dropbox API v2 in our Android app to upload database files (.db) to a user's Dropbox App folder. Below is the code for uploading file: InputStream inputStream = null; FileMetadata obj = null; try { inputStream = new…
varun
  • 465
  • 6
  • 23
0
votes
1 answer

Dropbox V2 throwing "SHARED_LINK_NOT_FOUND" when trying to get shared link url

When picking files from the dropbox (V2), I am trying to get the shared link url using this below code. internal inner class GetDropboxSharableURLTask(file_path: String, pathLower: String) : AsyncTask() { private var…
Narendra Singh
  • 3,990
  • 5
  • 37
  • 78
0
votes
0 answers

DropBox get shared link not Found in ios objective c

I find the dropbox get shared link using the following code. I used this code to get dropbox get shared link using latest api in ios 9 but my problem is that's My Code in obj c DBUserClient *client = [DBClientsManager authorizedClient]; …
Ali John
  • 9
  • 2
0
votes
1 answer

Dropbox API V2 Upload file Error PHP-Laravel

This is library code in PHP for uploading a file in dropbox-sdk(file- Client.php), using laravel framework. I would call below function in my dropbox controller. function uploadFile($path, $writeMode, $inStream, $numBytes = null) { …
Pavan Tolety
  • 163
  • 2
  • 16
0
votes
1 answer

How to remove Dropbox folder access prompt

I have an Android app which uses its own folder on my Dropbox account. Every time I start up my app I get the below prompt: Is it possible to code my app or configure it somehow so that I only have to acknowledge this prompt just once? I don't mind…
SparkyNZ
  • 6,266
  • 7
  • 39
  • 80
0
votes
1 answer

Dropbox redirect_uri for a windows application

I am using the REST-Library Demos to learn how to get & put files to a Dropbox App. I need to set up a redirect_uri but I can't figure out what to provide. The App setup page says this 'You must provide a proper URI with an authority or path…
GreatDayDan
  • 169
  • 4
  • 16
0
votes
1 answer

ObjectiveDropboxOfficial cannot authorize my app when dropbox app is installed in same device

I integrated ObjectiveDropboxOfficial SDK of dropbox into my app. I followed the dropbox tutorial provided and was able to authorize the app and do further dropbox operations like upload and download. It worked well. But if the same app is installed…
0
votes
0 answers

com.dropbox.core.NetworkIOException: com.android.org.bouncycastle.jce.exception.ExtCertPathValidatorException: Could not validate certificate

I'm seeing some of my app users facing the following exception when downloading a file via Dropbox: Caused by javax.net.ssl.SSLHandshakeException: com.android.org.bouncycastle.jce.exception.ExtCertPathValidatorException: Could not validate…
DR93
  • 463
  • 6
  • 21
0
votes
1 answer

Getting pattern mismatch error while sharing a folder using Dropbox API

I am working on an Android app which uses Dropbox Core SDK v3.0.3. While trying to share a folder with another member, I am constantly getting an error. The code is creating a new shared folder in the specified name, but not adding any members. This…
Dreamist
  • 123
  • 8