Comments
-
The .NET SDK does not currently offer progress listeners or download speed information. This feature has been requested in the past, and I have made an additional note in that feature request to record additional interest in that feature.
-
That is the line of code I would expect to be throwing the error based on the information you've shared. Your issue appears to be very similar to https://www.dropboxforum.com/t5/API-Support-Feedback/Xamarin-DropBox-APi-HTTP-400-Bad-request-on-DownloadAsync/m-p/302892. Given that the code sample works in a standard .NET…
-
I am able to run the following C# sample from our .NET tutorials page. It assumes a file named "file.txt" in the root folder of your Dropbox account. using System; using System.Threading.Tasks; using Dropbox.Api; namespace sampleApp { class Program { static void Main(string[] args) { var task =…
-
There does not appear to be a need for a custom HTTP client in the sample code you have provided. Is the custom HTTP client necessary, or can your code function without one? The .NET SDK does not require a custom HTTP client in order to function, nor do you need to explicitly set the Content-Type header. Our .NET SDK will…
-
[Cross-linking for reference: https://stackoverflow.com/questions/53299484/dropbox-sdk-login-script-error-windows-10-c-sharp-ie11 ] In the screenshot attached, you appear to be using a webview in order for the user to login and OAuth the app. Using webviews to process the OAuth app authorization flow is unsupported. Our…