Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
I know the code and APICODE is working because it does return the user accout correctly, but for whatever reason I cannot list the directories or files.
Using dbx = New DropboxClient("APICODE")
Dim full = Await dbx.Users.GetCurrentAccountAsync()
Console.WriteLine("{0} - {1}", full.Name.DisplayName, full.Email)
ListBox1.Items.Add(full.Email)
Dim list = Await dbx.Files.ListFolderAsync(String.Empty)
For Each item In list.Entries
If item.IsFile Then
Console.WriteLine("F{0,8} {1}", item.AsFile.Size, item.Name)
End If
If item.IsFolder Then
Console.WriteLine("D {0}/", item.Name)
End If
Next
End Using
I figured it out... I had to put the files in a specific APPS folder.
I figured it out... I had to put the files in a specific APPS folder.
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!