I use Saver Drop-in to save files from my site to user DropBox.
However I want to use forms or windows authentication in my site also for download file url's.
var options = {
files: [
// You can specify up to 100 files.
{'url': '...', 'filename': '...'},
{'url': '...', 'filename': '...'},
// ...
],
Is it possible to ensure that request comes from Dropbox service to save file for particular user who request it ?
Do you support some sort of authentication with OAuth or client certificates ?
If not, can usage of the businesses API help me ?