johanvena Posted January 9, 2018 Share Posted January 9, 2018 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 https://developers.facebook.com/docs/messenger-platform/discovery/messenger-codes 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>" } Quote Link to comment Share on other sites More sharing options...
requinix Posted January 9, 2018 Share Posted January 9, 2018 $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"); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.