I want to write a simple javascript-based (frontend only) dropbox music player. Just a dropbox file explorer, playlist and audio controls -- very basic for when I want to play some music without syncing the files locally.
I have experimented a bit, and can create a temporary file link (filesGetTemporaryLink) and play it with Audio object.
This works, but I wonder if there is a better way? It seems a temporary link is a public (non-authenticated) link to the file. I guess it is a very minor security risk. I don't know if Dropbox likes/allows frequent temporary link creation. Is it possible to get an authenticated link?
Thanks for the help. Sorry, I am a bit new to web/javascript/dropbox-api so I might be missing the obvious.