How to generate secure URL for upload for file upload in PHP and PDF.co Web API

PDF.co Web API: the flexible Web API that includes full set of functions from e-signature requests to data extraction, OCR, images recognition, pdf splitting and pdf splitting. Can also generate barcodes and read barcodes from images, scans and pdf.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

GenerateSecureUrlForUpload.php

      
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.pdf.co/v1/file/upload/get-presigned-url?name=test.pdf&encrypt=true", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", CURLOPT_HTTPHEADER => array( "x-api-key: {{x-api-key}}" ), )); $response = curl_exec($curl); curl_close($curl); echo $response;

VIDEO

ON-PREMISE OFFLINE SDK

Get 60 Day Free Trial

See also:

ON-DEMAND REST WEB API

Get Your API Key

See also:

printable version:
PDF-co-Web-API-PHP-PHP.pdf