gagsbh Helpful | Level 7

Comments

  • @"Greg-DB" Thank-you for the help. This worked for me.
  • @"Greg-DB" Thank you for your reply. How do I use PathRoot.Root mode in my c# code. I changed the path parameter in my existing code from /Boolean Array/12/SOBR10.png, it gives error 'Path not found'. to /root/Boolean Array/12/SOBR10.png Then I tried changing the code: using (var response = await…
  • Thank you for the reply. For me, the issue was due to: - The OAuth API app is approved multiple times by the same user—this will cause the previous authorization to reset and a new refresh token to be generated.
  • Happy New Year to @"Здравко" and @"Greg-DB" ! Thank-you for the clarification. I now understand that I need to use UploadSessionStartAsync with Close = true instead of UploadAsync. I have another query related to the last fragment call to UploadSessionAppendV2Async As I understand, I need to make the last call…
  • Hello @"Greg-DB" , I reviewed my code and found that multiple concurrent threads were trying to upload files that was causing "too_many_writes" error. Once I made the uploads serial, the issue got resolved. I would like to make the upload of several files happen is parallel so I like to implement…
  • Thanks @"Greg-DB" for the information I will look into my code and let you know if I have any more queries. Thanks, Gagan
  • Thanks @"Greg-DB" I was able to obtain the list of Shared Folders using: TeamNamespacesListResult result = await teamclient.Team.NamespacesListAsync(); List<NamespaceMetadata> lstMetatdata = result.Namespaces.ToList(); NamespaceMetadata has properties Name, NamespaceId, TeamMemberId Is NamespaceId same as the FolderID of…
  • @"Greg-DB" Hello Greg, The hostname had to be whitelisted by our network provider. Thanks, Gagan
  • Hello @"Greg-DB" The uploads worked on one of our servers but failed on 3 other servers. The upload also worked on my local development machine. I monitored the failed requests on the 3 servers using Fiddler and got the following in the response: "HTTPS handshake to content.dropboxapi.com (for #18) failed.…
  • Hello @"Greg-DB" This is the full output and it is the same issue. Exception in old Dropbox API version was not handled properly and control went till GetRequestID where object was null because response headers were missing. The exception message and stack trace changed after the Dropbox API was upgraded to 6.6.2. As per…
  • Hello @"Greg-DB" Thank-you for the information. I upgraded the Dropbox API to v 6.6.2 and converted all my .NET projects to target .Net Framework 4.7.2. The uploads were working fine yesterday and today morning but since last couple of hours I started getting the following exception during uploads. The exception is thrown…
  • @"Greg-DB" Thank-you for the information ! I am pasting a snippet below from AssemblyInfo.cs of Dropbox API SDK which suggest its v2 SDK. [assembly: AssemblyTitle("Dropbox.Api")] [assembly: AssemblyDescription("Official Dropbox .Net v2 SDK")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Dropbox Inc.")]…
  • Thanks Greg ! the reply for the api ticket resolved my issue. The mailbox in question had 300 GB of data. We were downloading the data using Dropbox for Business Api. It went fine downloading entire day. however, next day while downloading we started getting errors. "Unable to connect to the remote server. An error…
  • Hello Greg, I have raised a API icket - Ticket #8933138: API: DownloadAsync - path/not_found/... Exception for a particular Dropbox Business account Hope to hear back soon from API support. Thanks, Gagan
  • Thanks! It worked.
  • Thanks! It worked