Custom QR Code with Logo

BEZAHLT
Durch qrcode-monkey | Aktualisiert 13 days ago | Tools
Popularität

9.8 / 10

Latenz

689ms

Service Level

99%

Health Check

N/A

Zurück zu allen Diskussionen

working curl php method

Rapid account: Phenom Amd
PhenomAmd
2 years ago

i have saw documentation but sadly couldnt find a working example of uploading img with phpcurl perhaps this will help people

$url = ' ';//set your api endpoint here

 $file = ' '; // set your filename here
 
 $headers = array(
    "X-RapidAPI-Host: setyourapihosthere",//<---
    "X-RapidAPI-Key: setyourapikeyhere",// <---
 );
 
 $curl = curl_init($url);

curl_setopt($curl, CURLOPT_URL, $url);
 
 curl_setopt($curl, CURLOPT_POST, true);
 
 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
 
 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
 
 $fields = [
     'file' => new \CurlFile($file, 'image/png', 'file.png')
 ];
 curl_setopt($curl, CURLOPT_POSTFIELDS, $fields);
 
 $resp = curl_exec($curl);
 curl_close($curl);
 
 $obj = json_decode($resp);
 
 $logo = $obj->file; <---- use var $logo for your generating code  

Nehmen Sie an der Diskussion teil - fügen Sie unten einen Kommentar hinzu:

Anmelden / Registrieren, um neue Kommentare zu veröffentlichen