Questions tagged [dropbox-sdk]

81 questions
0
votes
1 answer

Handling DropBox with different Build Variant

I'm facing an issue with dropbox in my 2 apps. in fact I have 2 build variants and to be able to handle different secrets for both apps I use Gradle to inject the value into the manifest but for dropbox, i always have this error The installation did…
DaRkNight
  • 188
  • 12
0
votes
2 answers

dropbox-sdk-dotnet: how to get a refresh token and update the access token

I'm using the Dropbox SDK for DotNet, and it is time to support short-lived Access tokens. My use case is uncommon (web site, 'backend side'). Once the link to DropBox is made, everything should keep working unattended. In fact, it is OK to never…
horacioj
  • 687
  • 1
  • 8
  • 25
0
votes
1 answer

While trying to refer dropbox API (Dropbox.Api.6.0.1) from my .NET project, I get the following error

While trying to refer Dropbox API (Dropbox.Api.6.0.1) from my .NET project, I get the following error. Could not install package 'Dropbox.Api 6.0.1'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5',…
0
votes
1 answer

Is there anyway/endpoint to create access_token in code for Dropbox SDK authorization?

I am using dropbox javascript sdk for file uploads using following end points. For file below 150MB /upload For file above 150MB /files/upload_session/start /files/upload_session/append_v2 For Authorization, I am using the following code for…
Shahid Rafiq
  • 669
  • 1
  • 12
  • 27
0
votes
1 answer

How to get files / folder list from DropBox swift?

I am using below code and followed all configuration steps, but getting error only : "Unable to verify link request" DropboxClientsManager.authorizeFromController(sharedWorkspace: NSWorkspace.shared, …
0
votes
0 answers

Class 'Dropbox\AppInfo' not found - PHP

My code, script start.php in app folder: require __DIR__ . '../../dropbox-php-sdk-master/vendor/autoload.php'; session_start(); $_SESSION['user_id'] = 1; $dropboxKey = ''; $dropboxSecret = ''; $appName = ''; $appInfo = new…
user13347937
0
votes
1 answer

dropbox-api hide display name

I am using Dropbox API in .NET. I was able to create a sharing link using the code below. using (var dbx = new DropboxClient("some_token_here")) { var folderPath = "/test-hide-owner-onsharing"; var share = await…
Wylan Osorio
  • 1,136
  • 5
  • 19
  • 46
0
votes
1 answer

The Dropbox API is connecting me to the wrong folder

I'm using a Dropbox App with "Full Dropbox" access. I already have it working in one dropbox account and i'm setting it up for a client in a new account. They both seem to be the same type of account. The problem is when i create folders via the…
mdundas
  • 779
  • 1
  • 6
  • 11
0
votes
1 answer

Dropbox API does not update access level

The Dropbox API for Java offers the following approach for modifying the permissions of an existing file collaboration: public static void updateFileMember(DbxVlientV2 client, String file, String email, AccessLevel level) throws Exception { …
PNS
  • 19,295
  • 32
  • 96
  • 143
0
votes
0 answers

Uploading file to Dropbox with Cordova

I have a file on device locally. I want to upload this file to Dropbox. Almost all is done, but I cannot figure out what should be the value of the contents property of the object? I am using cordova file plugin to get the file url and Dropbox SDK…
Devashish
  • 1,260
  • 1
  • 10
  • 21
0
votes
1 answer

Dropbox Sync API to upload file

I am trying to upload a file to Dropbox using Sync API, but while uploading getting Error W/libDropboxSync.so(status): REQUEST: api_core.cpp:264: HTTP request error 400: v1_retired [dc166c5befd76df2] W/com.dropbox.sync.android.DbxAccount: Failed to…
Aditi
  • 455
  • 4
  • 13
0
votes
1 answer

Is it Possible to retrieve the just the Tag from Metadata of Dropbox File.?

I am trying to retrieve the tag of the Metadata of Dropbox so that i can save it in a List and use it to display if the given Data is of Type File,Folder or was it deleted ? This is the method I am using withIncludedDeleted which allows me to…
Animesh Sharma
  • 300
  • 1
  • 13
0
votes
1 answer

Trouble getting file revisions from dropbox paper - python SDK

I am using the python SDK for Dropbox to make updates to 'Dropbox Paper' documents. In order to achieve this I need to be able to get the latest file revision number. This can be done using files_list_revisions but I cannot get it to work. I've…
freefly0313
  • 105
  • 4
  • 14
0
votes
0 answers

Dropbox API App Authentication with .NET SDK

I've got a server-hosted .NET app that will need to connect to a single Dropbox account (on a schedule) and just overwrite a file there. In looking at the Dropbox authentication types, it states the following: App Authentication This type only uses…
razaross444
  • 513
  • 4
  • 15
0
votes
0 answers

UnicodeEncodeError While Calling Dropbox API

I'm struggling to upload files to Dropbox via Python using their module. The error is always the following: UnicodeEncodeError: 'latin-1' codec can't encode character '\u200b' in position 71: ordinal not in range(256) Originally, I thought it was an…