Hi,
I want users to upload a BLOB using the Dropbox Saver. Because the Saver only supports URLs, I upload the BLOB to my server and it generates a temporary URL I can than submit to Dropbox. This means a user click on Save -> start the upload -> once successful, a callback to the Dropbox.save() API.
However, Safari does not recognise this as opening a popup from a click event and silently kills it (also, Internet Explorer 11 will first ask you permission to open the popup in the future, but this can explained to users).
I noticed while looking into the Dropbox API source code that the Dropbox.save({ files: { ... }}) does support callbacks for the URL value, but this is not yet documented. Is there any way in which I can use those to postponed uploading files to my server till after opening the popup?
Some of the files I'll want to upload are over 20 MB, so there is no guarantee that they'll be done by the time someone has selected a destination in the Dropbox save dialog.