The title says it all really... I have a base64 pdf string which I append to:
data:application/pdf;base64,
The pdf is brought into a new tab using a link in my webpage. A blank page will initially show up, but then I refresh the page and it displays perfectly.
This issue only began once I changed my NodeJS code for retreiving the PDF, before it was retreiving the PDF with the https
module but now I am using request
.
base64
string at jsfiddle jsfiddle.net or plnkr plnkr.co? – Candiscandledata URI
is malformed. How thedata URI
created? – Candiscandledata URI
from the USPS Webtools API. Then I throw it straight into the webpage in a link like so:href="data:application/pdf;base64,<?php echo $label; ?>"
and it was just working until I changed my method for retrieval of the URI. – TanningNot allowed to navigate top frame to data URL
, that then lead me here: groups.google.com/a/chromium.org/forum/#!topic/blink-dev/… – Tanning<iframe>
to render the.pdf
see #42107084 – Candiscandle