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>”
}