Get help with the Dropbox API from fellow developers and experts.
I have this code working in my development environment, but it will not work using our production environment. I 've created a branding as specified in the documentation. The scoped apps are identical. Am I missing something? The shared linked retrieved is correct. Here's the exception I am getting:…
Hello, I am trying to write a python script to automatically store an excel file in dropbox. My excel file is created from turning dataframes into excel sheets. This file has 5 sheets with a different dataframe on each sheet. The file size is less than 150 MB. The file shows up in my specified folder, but shows an Error…
Can I make a feature request? I would be great if the delete events coming back from `/list_folder(/continue)` include the id of the thing deleted. Seems a bit odd that they dont alredy. Current: { ".tag": "deleted", "name": "General_Engingeering_Test_Project.pdf", "path_lower":…
I have a Python app that is intended to run as a scheduled job to save files to Dropbox at regular intervals. When I have a refresh token, this works fine: dbx = dropbox.Dropbox(app_key='******', app_secret='yyy', oauth2_refresh_token='zzz') But of course, the token only lasts for four hours. Every example I've found (here…
When I use the file_upload api to upload a file by first opening it with: with open(temp_file_path, 'rb') as local_file: file_data_local = local_file.read() The file uploads to the correct place in dropbox. However, when I get my file from a post request and try to read it and pass it into file upload the contents of the…
Hi everybody! I'm using the iOS SDK installed with cocoapods to authorise a user in order to upload files to DB. This works, as long as the DB-App isn't installed on my device (the authorisation is then made via Safari). As soon as I install the DB-App and try to allow my app to use DB (in the DB-App), I'm getting an error…
Hello, I am running into an interesting issue when trying to copy a file from one shared folder to another. I was receiving a response that the file could not be found with the path I provided. I would get this error: { "error_summary": "from_lookup/not_found/..", "error": { ".tag": "from_lookup", "from_lookup": {…
Hi im using the Javascript API to grab a few thumbnails for images in my app folder however wehn i grab the thumbnail for a png with transparency / alpha the transparent part shows as white in the thumbnail this is the method i am using to get the thumbs…
import dropbox box = dropbox.Dropbox(oauth2_refresh_token=<Refresh_Token>, app_key=<app_key>, app_secret=<app_secret>) With logging info able to see the following message: ``` INFO : Refreshing access token. ``` Later while trying to fetch the metadata using the following command: ```box.files_get_metadata(<File_name>)```…
I notice there is an option to use writemode mode=dropbox.files.WriteMode.overwrite when using uploading API ( dbx.files_upload() ), but there is no option for copying/moving file api. Can we add that? I'm using Python SDK: dbx.files_move_v2()dbx.files_copy_v2() and have been writing many boilerplates to handle file…
It looks like you're new here. Sign in or register to get started.