-
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 GAE, 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…
-
[Python SDK]sharing_list_shared_links for deleted users?
I'm attemping to enumerate all shared links within a business dropbox account as part of an audit. The most effective method I've found so far is using the dropbox.DropboxTeam.as_user().sharing_list_shared_links method to enumerate all links created by a given user. Unfortunately this returns an…
-
Two Folder name's at different locations not macthed withe each other
I am using the Dropbox Business account and API's to feteh the details. The problme is, I have created 2 folders at two different locations and gave samae name to that folders ,ie The name of both the folders are "Εισαγωγικές Eξετάσεις ΠΜΣ" When I compare the names of both the folder's then they are not matched and that is…
-
How can I get folder metadata using its ID?
I have a folder ID. I've checked API Dropbox there is a `files/get_metadata` endpoint https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata { "path": "id:a4ayc_80_OEAAAAAAAAAYa", "include_media_info": false, "include_deleted": false, "include_has_explicit_shared_members": false } This…
-
Dropbox API to get file of given prefix
Hello Team, Is there any api to download files from folder(for example: test) having filename with prefix(say: log_) using javascript.
-
Embedder embed function unmount after target element was unmounted
Hey community, I'm currently implementing the Embedder folowing along with the documentation. We decided to implement it with the "using JavaScript" method. It's working really fine as the example describes: Dropbox.embed({link:"https://www.dropbox.com/sh/keptcjl08q3wsid/AACui966iXcXPbagCJ2py2L-a?dl=0"}, element But…
-
Sporadic 500 Error from /files/search_v2
I'm getting 500 errors from the /files/search_v2 API, and I'm not able to figure out why. It happens sporadically, and maybe when I'm making several calls back-to-back, but I'm not 100% sure there's a relationship there. Here is the response header for one of my failed requests. Any idea what I might be missing?…