Jump to content

Auto create a FB QR code and save image to a folder


johanvena

Recommended Posts

Can someone please help me I wan't to auto create a FB QR code and save image to a folder. Have read this from FB developers page but have no idea implementing it in a php script
 
 
Generating a parametric code :-
 
curl -X POST -H "Content-Type: application/json" -d '{
  "type": "standard",
  "data": {
    "ref":"billboard-ad"
  },
  "image_size": 300
}' "https://graph.facebook.com/v2.6/me/messenger_codes?access_token=<ACCESS_TOKEN>"
 
and api response:-
 
{ 
  "uri": "<YOUR_CODE_URL_HERE>"
}

 

Link to comment
Share on other sites

$curl = curl_init("url goes here");
curl_setopt_array($curl, array(
CURLOPT_HTTPHEADER => array(
"the Content-Type header as a string"
),
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => json_encode(array(
write out the request body here as an array
)),
CURLOPT_RETURNTRANSFER => true
));

$response = json_decode(curl_exec($curl), true);
curl_close($curl);

if (isset($response["uri"])) {
copy($response["uri"], "place to save the image");
}
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.