I\'m using: https://pdfobject.com/
To display an embedded pdf file on my web app. However I cannot render a pdf created from a blob>
Just a complement to the answer by using iframe, we need also to use pdfjs viewer on this otherwise it will download.
The blob is created from binary response creates with Javascript
const url = window.URL.createObjectURL(new Blob([response], { type: 'application/pdf' }));
I do hope PDFObject can do the work without using iframe but as tested, it's not success.