I can't download mp3 files through bubble regardless of the plugin I am using

Hey there,

I am building an AI app that creates an mp3 file through eleven labs API. I am successful in saving the file I get as a response to the bubble database, however, no matter what I try, I can’t figure out how to download this file through the user interface.

I tried using the download file plugin, but when I do so, nothing happens. I tried doing it through custom javascript, and I get similar results.

Is bubble somehow blocking the downloading of mp3s ? Or is it just me?

Has someone found a way to download mp3 files directly from the user interface?

PS: For now I allow people to open their file in a separate page in their browser, and from there, they can download it. But obviously, this isn’t optimal at all.

PS 2: I can download other types of files, like images. The problem is only occurring with mp3 files.

I don’t know if this will work but try an HTML element with

<a href="https://www.example.com/file.mp3" download="file.mp3">Click to download</a>

fille file url and name dynamically

Thanks for your reply, I’ve tried doing this before posting and it didn’t work. I can do it on other websites so I don’t think my browser is restraining this action