I have a web app built in PHP, so I'm using v1 of the Dropbox API. When I request the metadata for a folder, it only returns a list of entries (files in the folder) if the folder is not shared. How would I get the contents for a shared folder?
Also, is there a way to use the "move" call to move all files in a folder? I tried wildcard pathnames, but they were rejected. My goal is move all files without moving the folder itself. If I can't get the filenames for a shared folder, then I'm hoping I can just move all of the files at once, so I don't have to iterate through the list of filenames.
Thanks.