i have white listed my domain and i get a message showing it was successful
{"result": "Successfuly updated whitelisted domains"}
but when i try getting the user id I get the error message
An error occuredMessenger Extensions are not enabled - could be "messenger_extensions" was not set on a url, the domain was not whitelisted or this is an outdated version of Messenger client
i am using A PC so an outdated version might not be it, and i have the messenger extension set this way
$get_started_display = "{
'recipient':{
'id': $sender_id
},
'message':{
'attachment':{
'type':'template',
'payload':{
'template_type':'button',
'text':'Click a button below to continue',
'buttons':[
{
'type':'web_url',
'title':'Add Leader Profile',
'url':'https://aadb-3120.herokuapp.com/login.html',
'webview_height_ratio' : 'full',
'messenger_extensions': true
},
{
'type':'postback',
'title':'Review Added Profile',
'payload':'review'
},
{
'type':'postback',
'title':'Help',
'payload':'help'
},
]
}
}
}
}";
please what are my doing wrong?