I have stored my PDF files using the storage API. To let the browser read PDF I could use the Response::make() but I am using the pdfObject jquery library to display it embedded. And the problem is while using the library, I have to provide the url of pdf:
var pdf = new PDFObject({
url: **"THE URL TO THE PDF",**
pdfOpenParams: {
navpanes: 0,
toolbar: 0,
statusbar: 0,
view: "FitV"
}
How can I give the URL of the securely stored PDF to the library? Any help appreciated!