Questions tagged [dropbox-sdk]

81 questions
5
votes
1 answer

Downloading images from publicly shared folders and sub-folders on Dropbox

This is similar to my previous question: Downloading images from publicly shared folder on Dropbox I have this piece of code (simplified version) that needs to download all images from publicly shared folder and all sub-folders. using…
Artur Kedzior
  • 3,994
  • 1
  • 36
  • 58
4
votes
1 answer

How to fix dropbox node api error 400 Request Header Or Cookie Too Large

I am using dropbox for node: "dropbox": "^4.0.17" and trying to upload a file. Here is the example code: require('dotenv').config(); const fs = require('fs'); const fetch = require('isomorphic-fetch'); const Dropbox =…
gandra404
  • 5,727
  • 10
  • 52
  • 76
4
votes
2 answers

mypy cannot find module 'dropbox'

I have a small codebase to back up Dropbox Business files, and am trying to use mypy to help me use the rather unpythonic Dropbox Python SDK. I have installed mypy, and it is working. However, mypy raises a warning for the following line: import…
blokeley
  • 6,726
  • 9
  • 53
  • 75
2
votes
1 answer

How to authenticate using the SwiftyDropbox API in a SwiftUI project?

For some time I have been trying to find a solution to authenticating Dropbox using their SwiftyDropbox SDK in a SwiftUI project, but this was to no avail. The instructions provided in the readme use an AppDelegate and and SceneDelegate. The latter…
Michael C
  • 96
  • 1
  • 8
2
votes
1 answer

Downloading images from publicly shared folder on Dropbox

I received a link to shared folder from e-commerce company. The link is public and not shared with my dropbox account directly. How do I get an url to the image that I can pass to either DownloadAsync method of the same sdk or simply HttpClient…
Artur Kedzior
  • 3,994
  • 1
  • 36
  • 58
2
votes
1 answer

Dropbox script/Do something when download done

Maybe I missed something when I looked over the Dropbox uploader https://github.com/andreafabrizi/Dropbox-Uploader . I'm creating a python script that uploads files from a USB plugged into a RPi, but need to have it so when the upload is complete, a…
2
votes
1 answer

Python and Dropbox: How to change SmartSync setting for locally created files?

I have a working Python script that generates and saves hi-res image files to a local Dropbox folder (synced through the Windows Dropbox app). Is there a way in Python to change the SmartSync setting for the newly created image from "Local" to…
Helpless
  • 41
  • 2
2
votes
1 answer

Overwrite existing file with UploadSessionStartAsync with DropBox SDK C#

Have to upload large files on Dropbox. I want to implement also and progress bar for upload. Everywhere it is mentioned that I should use UploadSessionStartAsync. What I do not know is how to overwrite existing file (when it already exists) with…
VladacusB
  • 844
  • 1
  • 7
  • 24
2
votes
1 answer

Upload File on Dropbox and retrieve uploaded file URL : Android

I have created an application, in which I have to upload media files like image, audio etc. So I am successfully able to upload the file on dropbox but I need the url of uploaded file from dropbox in success of upload. So I can work further by using…
1
vote
2 answers

Unable to list folders when using scoped app permission for Dropbox

I'm able to successfully list folder and contents when my dropbox developer app has full access, however, when I'm using scoped access only to a specific folder, it fails. Now when I switch to scoped access to a specific folder I'm running into…
RCS
  • 53
  • 6
1
vote
1 answer

Download a single file from a shared Dropbox's folder without having the share link of this file

As the title says, I have access to a shared folder where some files are uploaded. I just want to donwload an specific file, called "db.dta". So, I have this script: def download_file(url, filename): url = url file_name = filename with…
nachon
  • 45
  • 6
1
vote
1 answer

Accessing own Dropbox storage from an application

I would very much like to enable users of my app to backup some of app data on their own Dropbox. I would like to direct users to login to their Dropbox account with their email and password and then the app would generate and store a file there…
1
vote
0 answers

how to import or create a folder in dropbox using php

I was importing files but I don't know how to import an entire folder or create one inside dropbox I was wondering how to make this import a folder not file, below is the encoding I used, what needs to be changed or added to do this? this is the…
1
vote
1 answer

How to make sure, that my apps support short-lived Dropbox access tokens?

I have added Dropbox support to my apps a while ago and never touched the implementation since. It is still running fine. However, a few month ago Dropbox updated the way permissions are handled which may require code changed in my apps. As…
Andrei Herford
  • 17,570
  • 19
  • 91
  • 225
1
vote
2 answers

Download files from Dropbox Team folder using Python SDK

I'm trying to download files from the Dropbox Team folders, Created Access Key I tried with files_list_folder() as suggested from different posts from StackOverflow, But, This method is not accessible with dropboxTeam class. dbx =…
ngopal
  • 219
  • 1
  • 2
  • 11
1
2 3 4 5 6