-
Re: How to get a path to a Dropbox file in order to use the files_download function in python?
For some reason, using files_list_folder().entries.path_lower is giving me this error: dropbox.exceptions.ApiError: ApiError('496762b8575c8f262949ace63f24a1fe', ListFolderError('path', LookupError('not_folder', None))) I found that when I tried printing out file list folder, my path_lower is none, is there another way to…
-
Download Zip limits
I am curently experimenting with the Download Zip and Download File APIs, but I'm running into issues with the two: 1. Download Zip works well since it preserves the file metadata, but quickly becomes unfeasible due to the limitations since we have many instances of files larger than 4GB or folders that are over 20GB. 2.…
-
get_temporary_link with zip files causing Google Chrome warning
Hi Google Chrome (83, Mac) has started giving me a 'Dangerous File' warning whenever trying to download zip files specifically served by the 'get_temporary_link' API call. I have 'Safe Browsing' enabled (set to 'Standard'). Until recently I have experienced no issues using this API method (using it for over 2 years now).…
-
Anybody else getting intermittent 500 error responses from Dropbox Paper?
I am using the Dropbox Paper endpoint: https://api.dropboxapi.com/2/paper/docs/download but today, for whatever reason, am getting ~5-10 500 responses (over the course of downloading ~50 documents). This has never happened before, nor do I see any status issue being reported on the Dropbox Status page - Paper is still in…
-
files_list_folder encoding issue
I've tried to use the sample code provided in other discussions to no avail. #!/usr/bin/env python import dropbox dbx = dropbox.Dropbox("***TOKEN*GOES*HERE***") myDir = dbx.files_list_folder("") for item in myDir.entries: if isinstance(item, dropbox.files.FileMetadata): name = item.name fileID = item.id fileHash =…
-
Is there any api to know whether a file contains restricted content?
Hi, Is there any api to know whether a file contains restricted content before downloading api is hit? Thanks in advance, Bharath
-
Freenas won't connect
I have tried to log into dropbox account on my freenas server but I get the following error Error: 2020/07/10 16:47:29 ERROR : : error listing: Post https://api.dropboxapi.com/2/files/list_folder: dial tcp: lookup api.dropboxapi.com on [::1]:53: read udp [::1]:51282->[::1]:53: read: connection refused 2020/07/10 16:47:29…
-
ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:852)
Hi everyone, I am getting the following error: C:\Python36\Dartfish\Scripts\python.exe C:/Workspace/COC-Dartfish/Dartfish/Dropbox_Download.py SBL Traceback (most recent call last): File "C:\Python36\Dartfish\lib\site-packages\urllib3\connectionpool.py", line 677, in urlopen chunked=chunked, File…
-
SharingFileAccessError (no_permission) while trying to call add_file_member in a CSV file
Hey guys, We have in our system the ability to add user permissions to a specific file in Dropbox. It's currently working pretty well for ".XLSX" files for example. But while debugging, I found that for CSV files are not working and actually giving no permission error instead of something like "not supported". In the…
-
getting a 409 error and need help
I'm just getting started with the Dropbox API. I want to see a list of all files in my `Camera Uploads` folder (and eventually download them) via the api. I've been following some tutorials and have tried the following: import { Dropbox } from 'dropbox'; const accessToken = "<my token>"; const dbx = new Dropbox({…
-
Re: ObjC 3.3.5 new(ish) parameters for listFolder method
If recursive is not supported by shared links, how can we use recursive. This is the error I'm getting: Error in call to API function "files/list_folder": Recursive list folder is not supported for shared link. Note: I'm new to this, so please keep the answer beginner-friendly.
-
Create download zip package
Hello I'm accessing the API via a PHP library. I want to do two things, and need to know if its possible: 1) We have files in 2 folders that I would like to be able to have our clients download with a single click - for instance, if we have the folders below, we would want to download Job1\Part A and Job1\Part B. Simplest…
-
Business Account - Get list of all users through API
Is there any API for dropbox business Account to get a list of all users and their activity ?
-
API - limit access to folders
Hi, I am looking at building an app with laravel to share client documents. Clients will log into the application and have access to only their files to download. I wanted to use dropbox api for this but i can't see a way in the docs to limit a user to a specific folder via the api? Could this be acheived through teams? It…
-
Upload requests limit
You have in the docs: "We recommend uploading many files in parallel to increase throughput." How many `files_upload()` functions I can call in a second? Do you have limits for this 100, 1000, 10k?
-
C# API FileRequest Deadline
I'm attempting to create a File Request link with a deadline. I am using a business account. When I get the return, it lists the deadline as I sent it, but it doesn't appear to be active when I use the link. Here is some code: var dbTeamClient = new DropboxTeamClient("authcode"); var dbClient =…
-
copy team folder to new team folder
Hi, I am trying to copy a team folder to a new team folder but I am getting an error 'from_lookup/not_found/.' Used id:.... format and path, no one works c# api, code: using (var dbx = new DropboxTeamClient(tokenMemberFile)) { var memListResult = await dbx.Team.MembersListAsync(); var memId = memListResult.Members.First(x…
-
What is the proper way to get "server_modified" date from DBFILESMetadata?
What is the proper way to get "server_modified" date from DBFILESMetadata in Objective-C API? There is no corresponding property in the current specification, but it seems that it exists in the description property in the form of the following text. { "client_modified" = "2020-07-08T00:10:50Z"; ..... "server_modified" =…
-
dropboxのAPIでupload命令を使っていますが、データ送受信が出来なくなった
こんにちは。私は日本の細野祐一といいます。 dropboxのAPIでupload命令を使ってラズベリーパイとdropboxのファイルの送受信をしています。 しかし昨日、そのデータの送受信が突然途切れました。 使い方は、以下の様になっています。 API:Dropbox API type of access:Full Dropbox この使い方は不安定なのでしょうか?
-
How to upload files in batch?
Suppose I have some files I'd like to upload to a folder on Dropbox using dropbox-sdk-python. Some of the files are more than 150 MB, some of them less than 1 MB. The documentation recommends uploading many files in parallel and offers 6 functions for that: ``` 'files_upload_session_append',…
-
Ruby API v2 Client got Internal Server Error after redirected from oauth2.authorize
I deployed my Ruby app in ******, and browsed it with url: https://xxxxxxxxxxxxxx.appspot.com/. After directed to https://www.dropbox.com/oauth2/authorize, I click the Allow, the the page was directed to https://xxxxxxxxxxxxxx.appspot.com/auth, and only showed: Internal Server Error Part of my code is pasted below: def…
-
What's the best way to share about 120 folders with some users who may not have Dropbox accounts?
I need to create about 120 folders, put a small "readme.txt" file in each, and then share each folder, seperately, to about 120 different email addresses, ie: one folder per email address. Many users don't already have Dropbox or may not want to create an account. But also, many do. I programatically check for new contents…
-
iOS sdk 13 DropboxClientsManager.authorizeFromController not trigger competion
Hello guys. Please help. After migrating my progect to iOS sdk 13 I've got a problem. So this method is not triggered completion handler anymore DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: self) { (url) in } on iOS 12 it worked perfectly well. What should I have to change?
-
Dropbox not sending refresh_token using new OAuth2 flow
Hi, (Sorry I first posted this as a reply to this "solved" topic, which was a bad idea because it's mostly unrelated) I'm developing a "native" app (called Ginj), and started Dropbox integration a few weeks ago. I first used Dropbox's Java API for authorization, using PKCE and "copy/paste" from browser to app, and it…
-
Unable to fecth files and folders from Team folders
I am using the Dropbox Business API and trying to fetch Folders and Files present into my team folder (If you will see I have created a "General Information" folder) (The folder which is out side of Member folders purpple color) but I am not able to fetch anything using this API.. Although I can fetch all the files and…
-
Dropbox authentication error with UpdraftPlus from Wordpress
I have been using the Remote Storage option from within the UpdraftPlus plugin in Wordpress to keep backups on my dropbox account for several years. After moving my website to a new provider, the upload to dropbox stopped working. I checked that the connection to Dropbox is set up correctly by removing the settings for…
-
App Folder, scopes, and sharing
I'm exploring the new scopes along with the App Folder permission model to see if we can build an app that doesn't request access to Full Dropbox but still allows for sharing for contents within the App Folder. I'm wondering how to get a shared folder from User A into User B's App Folder I tried, as User B, mounting the…
-
Why doesn't Dropbox show up in my document browser?
When I open my Files app, I see the standard options (iCloud Drive, On my iPhone, Recently Deleted) plus a few cloud services (Google Drive, Dropbox, Quip) When I create a new Document Based App, I see the standard options + only Google Drive This is after hitting ... -> Edit, so Dropbox isn't just hidden. There's no way…
-
Sharing multiple Dropbox folder using OAuth
Is it possible for us to share more than 1 folder using an OAuth token on a user's Dropbox account? Currently, we are instructing our customers to name a folder they want to share with a specific folder name, and then our app connects to that folder and allows an access token to be generated for that folder access. Could…
-
Error 500 when attempting to upload a file
Hello. I use the API v2(Not Business API) to upload some files for my application. Normally, the uploads are working fine. However, as a result of changing my dropbox plan from basic to business, the files that used to come in for uploads can no longer be uploaded. But oddly enough, some files can be uploaded. The response…