-
free account App API Root access still remains the same after merging with paid account
Started with a free Dropbox account that I setup an App for and was able to generate manual auth tokens to access it using the Dropbox .Net API. Everything worked as expected with App API "Root" access being the topmost folder. Then a paid Dropbox account was setup and I was invited to join that paid account. My original…
-
Dropbox API Service Error: 503 Service Unavailable is in HTML format
Using the Dropbox .net API, I received the following error one time making a file move call. Why is it formatted as HTML? Isn't that assuming only a webpage is making the client call, which is not the case for my development, which is a service to service call via your client API.
-
restored folders and files have different ids than their originally added entities
given dropbox UI has no folders or files in it when I create a subfolder and add file1 to the subfolder and add file2 to the subfolder and note the ids for the new subfolder and two new files and when I delete the subfolder and when I restore file1 then the restored subfolder id is different than the originally added one…
-
SearchV2Async returning inconsistent results
given the following code: namespace Dropbox{ internal class Program { static void Main(string[] args) { DropboxClientConfig config = new DropboxClientConfig { MaxRetriesOnError = 0 }; DropboxClient dropboxClient = new DropboxClient(AccessToken.ValidToken, config); SearchOptions searchOptions = new SearchOptions("",…
-
why is FolderId / SharedParentFolderId null or just missing for FileMetadata retrievals?
static void Main(string[] args) { DropboxClientConfig config = new DropboxClientConfig { MaxRetriesOnError = 0 }; DropboxClient dropboxClient = new DropboxClient(AccessToken.ValidToken, config); var result = dropboxClient.Files.ListFolderAsync("").Result; var folderMetadata = result.Entries.Where(e => e.IsFolder).First()…
-
Uploading an update to a file with WriteMode.AsOverwrite mode with Id or Path fails
Hello. I am using the .Net Dropbox.Api (6.37.0) with the following code sample: using Dropbox.Api;using Dropbox.Api.Files;using System.Text;namespace Dropbox{ internal class Program { static void Main(string[] args) { DropboxClientConfig config = new DropboxClientConfig { MaxRetriesOnError = 0 }; DropboxClient…
-
slow response time when calling Dropbox.Api (6.37.0) with expired access token
Hello. I am calling an established Dropbox account setup for an application with API access with what was once a valid access token that has expired. It takes about 15 seconds or more to obtain the AuthException: expired_access_token result. Why is this? The response should be in milliseconds, not 15 seconds or more. Code…