Hi, I am attempting to use the JavaScript SDK to retrieve a publicly shared URL. This method succeeds if I first authenticate the user.
dbx.sharingGetSharedLinkFile({'url': sharedUrl}).then(...);I would like to allow users of my application who do not have a Dropbox account to be able to access files shared by another user who does have a Dropbox account. I was hoping to use some form of "App Authentication" without specifying a user. If I simply provide my client id (with or without secret), I get "The given OAuth 2 access token is malformed."
All examples I've found show how to use the HTTP SDK, but I would prefer to use the JavaScript SDK. Is there a way to access a shared link through the JavaScript SDK without having to authenticate the user?