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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.