Hello,
I am developing an application using the Dropbox API and .NET SDK. I have been successfully downloading files using the SDK until 7/11, but since then, the download functionality has stopped working. I am seeking assistance to understand why this is happening.
The exception I am encountering is a BadInputException. I initially thought there might be an issue with the arguments, but the arguments have not changed since the downloads were working. The download API only requires a file path as an argument, so I believe it is unlikely to be an argument error. Additionally, the files do exist on Dropbox.
When I test the download functionality using the Dropbox API Explorer, it works fine. This leads me to believe there may be an issue with the SDK. However, it is puzzling that the SDK suddenly stopped working despite being functional before.
https://dropbox.github.io/dropbox-api-v2-explorer/#files_download
Here are the details of my environment and the versions I have tested:
Error details:
Dropbox.Api.BadInputException
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dropbox - 400</title>
<link href="https://cfl.dropboxstatic.com/static/metaserver/static/css/error.css" rel="stylesheet" type="text/css"/>
<link rel="shortcut icon" href="https://cfl.dropboxstatic.com/static/images/favicon.ico"/>
</head>
<body>
<div class="figure">
<img src="https://assets.dropbox.com/www/en-us/illustrations/spot/target-miss.svg" alt="Error: 400"/>
</div>
<div id="errorbox">
<h1>Error (400)</h1>Something went wrong. Don't worry, your files are still safe and the Dropbox team has been notified. Check out our Status Page to see if there is a known incident, our Help Center and forums for help, or head back to home.
</div>
</body>
</html>
I would appreciate any help or insights into resolving this issue.
Thank you.