Camunda forms - ui

Hi All,

I have converted my base64 string to blob, After that, I have set the href and download attributes so that I can download the file from embedded forms in camunda user tasks.

But, somehow my url is converted to unsafe: blob, on href . Pls, help me out how can i make it safe url.
unsafe

@Ingo_Richtsmeier … pls help or forward it to some camunda ui experts .
@WilliamR.Alves @hassang @g.manzano @jonathan.lukas @Niall

Hello my dear!

Is your URL not signed?
Generally, when a URL is not signed, the browser considers it to be an insecure URL and performs this “blocking”, as it is unable to verify authenticity.

This “unsafe” is added by the browser itself when it is verified that the url is not safe, so I believe you will need to adjust this using the URL.createObjectURL() method.

When you no longer need the secure URL, you can use URL.revokeObjectURL() to release browser resources.

I’m leaving the link below so you can check it out and see if it helps.

I hope this helps!

William Robert Alves

1 Like