I am receiving the binary data of a PDF using callAPI. Is there a way to display this in a web embedding? Either by converting the binary data into a PDF format as embedding it directly not working. Any guidance would be appreciated!
Oh I tried that so hard! Wasn’t able to make it uploadable even with an API capable of receiving raw binary file in raw text body. Glide adds \n for break line so it corrupt files.
I do something similar to Bob.
I need to interface with an external API that returns binary PDF files.
Because the Glide API can’t handle these, I use Make to fetch them, then push them in through the Glide API as base64 encoded text, and then display them in a Webview as a dataURI.