string token = "<redacted>"; using (var dbx = new DropboxClient(token)) { var list = dbx.Files.ListFolderAsync(string.empty)
the list result is 0 please help
What access type does your app have? E.g., if it's an app folder app, it will only list items in your app folder, which is empty by default.
By the way, I redacted your access token, but for the sake of security, you should disable that access token since it was posted publicly. You can do so by revoking access to the app entirely, if the access token is for your account, here:
https://www.dropbox.com/account/security
Or, you can disable just this access token using the /disable_access_token endpoint:
https://www.dropbox.com/developers/core/docs#disable-token
i have used both the app and the full dropbox. same issue for both..
This is working fine for me. How are you checking the contents of "list"? Can you share more of your code?