We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
dwWithCat
6 months agoExplorer | Level 3
Saver does not upload image file to dropbox, only opens the image in new tab.
Trying to use Saver on Instagram files. If I use the API like this:
fetch("/api/dropboxupload", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
url: YOUR_FILE_URL,
filename: YOUR_FILE_NAME,
accessToken: accessToken.DropboxToken,
}),
})
I am successful. If I uninstall Dropbox from my node app and use Saver like this:
<a
href={YOUR_FILE_URL}
data-filename={YOUR_FILE_NAME}
className="dropbox-saver dropbox-dropin-btn dropbox-dropin-default"
>
Save to Dropbox2
</a>
All that happens is that the image opens in a new tab in the browser.
Popups are allowed in both Safari and Chrome for dropbox.com.
dwWithCat Здравко is correct; for a situation like that, you'll need to instead follow "Programmatically creating Saver buttons" or "Triggering the Saver from JavaScript".
- Greg-DBDropbox Staff
Your first code snippet shows you POSTing some information to your server, not directly to the Dropbox API, so it's unclear what that does. Presumably you then have code that calls the /2/files/save_url Dropbox API endpoint. That offers essentially the same functionality as the Dropbox Saver, but using a different interface.
For your second code snippet, where you're trying to use the Dropbox Saver, I see you're setting an attribute "className" but that should actually be "class" as documented here. By the way, you shouldn't set "dropbox-dropin-btn" and "dropbox-dropin-default" yourself; the Dropbox Saver script will do that automatically.
Also, make sure you have the script tag loaded as covered in the Setup section of the documentation.
- dwWithCatExplorer | Level 3The first snippet succeeds. It’s code from my api Endpoint. The second snippet is my Saver anchor tag with the same data as in the first snippet. The url is a link to an Instagram image. The only difference that I can see between the data in the two snippets is the access token in the api method
- dwWithCatExplorer | Level 3Gemini AI said that Saver won’t upload an image file from a url, that it has to be a file located on my machine
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,876 PostsLatest Activity: 7 hours agoIf you need more help you can view your support options (expected response time for an email or 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!