I am using the .NET SDK to interact with dropbox, and I cannot get it to return anything when using Files.ListFolderAsync. I am able to get it to work correctly when using my own personal dropbox, but when I connect to a client's dropbox it is empty. I have verified that they have folders and files in the folder, and that they have granted files.content.read permissions. I have also tested that the connection is working by using:
var checkResult = await _DropboxClient.Check.UserAsync("The check is good");
That returns successfully. Any ideas on what I am missing here?