I'd like to be able to add files into a shared Dropbox folder, and then have my website be able to list and download the contents of that shared dropbox folder.
So I don't want there to have to be a user authentication flow. I don't need to access the folders/files of various users. I just need to be able to access the content of this one folder.
I want my server to be able to list the contents of this one shared folder, with the authentication process happening entirely on the server, and then display that via a webpage. Then if a user clicks on a specific file, it will download that file, once again, without having to go through a user interactive authentication process.
All the examples I see require user input for authentication to access all the contents of one users Dropbox folder. Are there any examples doing just what I'm saying, preferably with the Java SDK (or javascript/node)?