Questions tagged [dropbox-sdk]
81 questions
0
votes
0 answers
Specification '\dropbox-sdk-java\generated_stone_source\main\src' must have a .stone extension
After importing the dropbox-sdk-java example from the official GitHub into Android Studio I get this building and trying to run it.
Specification 'C:\Users\XXX\StudioProjects\dropbox-sdk-java\dropbox-sdk-java\generated_stone_source\main\src' must…

PIXP
- 2,382
- 3
- 19
- 28
0
votes
1 answer
Dropbox Python API - Team Folder Access
I am trying to connect to Dropbox to read in a csv into my python program. I can currently connect, but I can't access the folder I want to access. I configured my app to have all access. When I click on "All Files" in Dropbox Desktop, I currently…

courtneymickelsen
- 60
- 8
0
votes
0 answers
Retrieve thousands of files and folders without throttling
I'm trying to generate a nice big array for each user that contains all the files and folders the user owns as well as the users that each file/folder is shared with (e.g. users: ["John Doe": [{"name":"DemoDoc", "type": "file", "isShared": true,…

Jono Suave
- 101
- 1
- 5
0
votes
0 answers
Dropbox SDK React-Native
I have react-native app for mobile and web. I have Dropbox section that I need to connect with backend. On toggle button I need to show Dropbox button and when I click on button show modal to signIn.
…

Manche
- 47
- 2
- 10
0
votes
2 answers
dot net maui and dropbox api: Error in call to API function "files/download"
I have visual studio 2022 and am using dot net maui building on the base example by James Montemagno. I am calling the dropbox api (visual studio package) to download a file and it works fine on windows, but when I switch to the android emulator I…

John Strudwick
- 1
- 2
0
votes
0 answers
Error while writing a file in dropbox with error code 29
I mounted dropbox in my machine (Ubuntu 20.04 LTS (Focal Fossa) ).
Trying to write a file inside mounted dropbox storage , in that I performed write(a_handle, a_pdata, a_sLength);
File created but Write failed with error 29.
Is anyway to identify or…
0
votes
1 answer
Listing files using Dropbox API
I am trying to access files stored on my Dropbox using the offical Dropbox SDK for Python.. I tried a few ways of putting in the directory name whose contents I wanted to have listed based off of a script taken from this link…

Sameeresque
- 2,464
- 1
- 9
- 22
0
votes
1 answer
Is there a way to upload/download a file from/to Dropbox while keeping the modification date of the file?
I'm trying to build a sync system for my writing application, so that I can synchronize my text files with a Dropbox folder and edit them from my computer.
Thing is, when a file is uploaded, its modification date corresponds to that of the upload…

Loukana
- 23
- 6
0
votes
1 answer
Authenticating dropbox using SAML response token
We are trying to implement a logic to connect dropbox using azure SAML response token.
We have already authenticated user in our application using saml with the same response token we want to redirect it to dropbox home page without providing…
0
votes
1 answer
DropBox SDK failing due to "invalid_access_token"
I'm using the Dropbox.API Nuget (latest version 6.26.0) for my C#.net desktop application.
I'm obtaining a DropBox access token by requesting authorization using my client_id:
var requestUrl =…

AlvinfromDiaspar
- 6,611
- 13
- 75
- 140
0
votes
1 answer
Dropbox Python SDK , unable to download or list files
We are planning to use Dropbox to get some csv files transfered from client location. This csv files need to be processed by a data engineering pipeline. We are using python to process this. As a first step , we need to download the file from…

Vineesh Vijayan
- 570
- 4
- 15
0
votes
1 answer
How to implement DropboxOAuth2Flow in node.js?
In the Dropbox markdown webhook example, they used the DropboxOAuth2Flow from the Python SDK to link a Dropbox account to the Webhook app. I want to implement the same thing in Node.js and I couldn't find any thing similar in their JavaScript SDK…

DINO
- 191
- 1
- 12
0
votes
1 answer
I can't find my uploaded files in Dropbox
I'm working on uploading some countries' admin data to my Dropbox app. Here below is my code that does that:
# importing the required libraries
import dropbox, sys, os
import requests
# Get your app key and secret from the Dropbox developer…

Steel8
- 143
- 1
- 11
0
votes
0 answers
how to import to dropbox using php?
I was wondering how to upload folders not just files to dropbox
I'm using a code to upload files what needs to be changed in it to create or upload folders for example?
below you will see the upload.php

Jones Moura
- 27
- 4
0
votes
2 answers
Cast Dropbox class to JSON
I am using the Python Dropbox package to pull team events:
dbx = dropbox.DropboxTeam(self.access_token)
result = dbx.team_log_get_events()
I need to pass the value of result along as a JSON object. When I try using json.dumps(result), I get this…

rgahan
- 667
- 8
- 17