Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
var optionssave = { success: function() { console.log("Yay! File saved to dropbox"); }, cancel: function() { console.log("Whoops file not saved!"); }, error: function(errorMessage) { console.log(errorMessage); } }; var blob = new Blob([setxml], { type: "text/plain;charset=utf-8" }); var bloburlsav = URL.createObjectURL(blob); Dropbox.save(bloburlsav, filename, optionssave);
Dropbox file chooser is working fine.
The dropbox file saver reaches to the point of displaying the file name and the save button, on clicking the save button, it displays, "Failed to load request" (screenshot attached)
You can visit the link live: https://tomatosmoothie.github.io/recipes/ and try it if you have the time.
Thanks.
Thanks for your reply. I guess, I'll just hide the button for now.
Is there any specific place/page/channel I can follow to see if/when this feature is maybe added?
Thank you so much, appreciate it.
I got lost in the same blob trap, but found a solution...
csvFile = build up a string of the whole file...
const dataURI = 'data:text/plain,' + encodeURIComponent(csvFile);
Dropbox.save(dataURI, "filename.csv", options);
the "ampsersand colon semicolon" is just a colon.
Any progress on this feature?
@quartertone No, unfortunately I don't have any news on this request.
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!