My situation (everything in PHP):
What I get: Base64 encoded string from the API.
What I need: a link to a link that downloads this document in PDF format. (I'm sure it will always be a PDF file)
I tried this:
$decoded = base64_decode($base64);
file_put_contents('invoice.pdf', $decoded);
but I kind of lost it, I can’t find a way to load it after decoding it.
I hope someone can help me, thanks in advance!
source
share