Back to all steps

Save page as PDF and send

Step fields
http://mysite.com/post (url)
Save the current page as PDF and POST it to your address (Chromium only).
Example: https://myapi.com/save-pdf
Usage example

Save the page as a PDF and send a POST to your URL.

Example: https://myapi.com/save-pdf

POST request: the PDF arrives in the pdf field in base64 format.

Receiving example (PHP):

  • $pdfBinary = base64_decode($_POST["pdf"]);
  • file_put_contents("report.pdf", $pdfBinary);

Limitation: works only in Chromium.