-
File Download API Exception
Hello @Greg-DB Recently, there were changes made in the code related to Dropbox Teamspaces. We are now facing errors sometimes when we download files that were notified with file paths by webhooks. Using webhooks, we obtain the path of the recently added file in the account and then download using Dropbox APIs. In the…
-
Invalid_Grant whlie generating Access Token using saved Refresh token in Dropbox Sign .NET SDK
Hello @Greg-DB , I am using the following Dropbox Sign .NET SDK code in my project to generate Dropbox Sign Access token using previously saved Refresh token. public async Task<TokenResponse> GetRefreshToken(TokenResponse tokenResponse) { TokenResponse tokenResponse2 = new TokenResponse(); string errorlog =…
-
Too Many Write Operations when Uploading Files
Hello @Greg-DB I am getting too_many_write_operations/ at times while uploading a hierarchy of folders each containing a single file. I am using the UploadSessionStartAsync, UploadSessionAppendV2Async, UploadSessionFinishAsync and UploadAsync APIs to upload files using fragment buffer. Sometimes all the files get uploaded…
-
Dropbox Web Hook URI Disabled Email Notification - Change Recipient of Notification email
Hello @Greg-DB My manager receives email on Disabling of Web Hook URI for my Dropbox for Business App from The Dropbox Platform Team <api-support@dropbox.com> with the Subject: Dropbox webhook URI disabled He wants to change the email address where this notification email is sent. How can we do this ? Thanks, Gagan Gagan
-
Get List of Shared folders in Dropbox Team
Hello @Greg-DB I am trying to get list of Team and Shared Folders as shown in Content section of Admin console. I am able to get Team Folders using the Dot Net Official SDK: TeamFolderListResult result = await teamclient.Team.TeamFolderListAsync(tfargs); How do I obtain the list of Shared Folders, as shown in screenshot…
-
New Dropbox API Updates
Hello @Greg-DB I received an email from Dropbox - Action Required: Important Dropbox API Updates. I have an existing Dropbox app that uses old way of scopes/permissions and long-lived access tokens. What changes do I need to do on the following 2 Dropbox API updates ?…
-
Dropbox API Upload Errors using .NET SDK
Hello @Greg-DB, We already have a Dropbox solution on production system that fetches and restore files. Our solution uses Dropbox API SDK for .NET - https://github.com/dropbox/dropbox-sdk-dotnet We set up 2 new Windows 2019 servers for QA Testing with our solution. The download and upload APIs on these servers gives…
-
Too Many Requests Error
Hello Greg, I am using the following Dropbox Team API - ListFolderContinueAsync in our production Dropbox application. result = await clientadmin.Files.ListFolderContinueAsync(model.basechangetoken); However, this is giving error: too_many_requests/... at…
-
DownloadAsync - path/not_found/... Exception
Hello Greg, We have been using Dropbox Api for Business to download files from Dropbox folder path using Dropbox Business api in .NET - dbx.Files.DownloadAsync(filepath). We used this api for a dropbox account (<redacted>) which was recently converted from a personal to Business Dropbox account. However, download for every…
-
Dropbox for Business - Queries
Hello, I am developing a solution for Dropbox for Business. I have few queries: 1. Can we have 2 owners of a shared folder or a team folder ? 2. For a Dropbox team having single team admin, can we delete its admin ? 3. If a team admin is deleted, do we get any web-hook notification telling us whether the team admin deleted…
-
Web-hook handling logic help
Hello Greg, I need some help with using Web-hooks. I use the following code to get a cursor token for the Root folder Code I: result = await client.Files.ListFolderGetLatestCursorAsync("",true); and I save result.cursor in database. Next time a web-hook arrives for the same dropbox account, I use the result.cursor…
-
Error in call to API function "files/list_folder/continue": Invalid "cursor" parameter:
Hello, Please let me know the reason for the error. I am getting the following exception when calling the following api: ListFolderResult result = await client.Files.ListFolderContinueAsync(model.basechangetoken); Error in call to API function "files/list_folder/continue": Invalid "cursor" parameter:…
-
"Restricted Content" Error
Hello, I am facing Restricted content Error for html files in dropbox while downloading them using Dropbox api for .net. FilePath: /Operations/_working files/nancy/oldlaptopbackup/documents/agriculture/2018 Farm Bill_ Integrate CSP with the larger sustainability movement _ AgriPulse_files/21176.html Error :…
-
Large File Download
Hello, I used Dropbox SDK for .NET to download a large file of size 1.3 GB but the program hung. using (var response = await dbx.Files.DownloadAsync(path + "/" + file)) { byte[] buffer = await response.GetContentAsByteArrayAsync(); } I then used Dropbox REST API - "https://content.dropboxapi.com/2/files/download" with…
-
Large File Download
Hello, I used Dropbox SDK for .NET to download a large file of size 1.3 GB but the program hung. using (var response = await dbx.Files.DownloadAsync(path + "/" + file)) { byte[] buffer = await response.GetContentAsByteArrayAsync(); } I then used Dropbox REST API - "https://content.dropboxapi.com/2/files/download" with…
-
Restricted content Error
Hello, When I try to download the following file from a client's dropbox account using Dropbox api, I get an error. FilePath: /Operations/office logistics/it/assets - software/Office 2013 std/autorun.inf Error:path/restricted_content/... Please help. Thanks, Gagan
-
Restricted Content Error
Hello, When I try to download the following file from a client's dropbox account using Dropbox api, I get an error. FilePath: /Files/2016/Final Products/Archive/cfl.dropboxstatic.com.url Error: path/restricted_content/.. Please help. Thanks, Gagan