Solicitar localización
function requestLocation (number, bodyText, buttonName){
const data = JSON.stringify({
"messaging_product": "whatsapp",
"recipient_type": "individual",
"type": "interactive",
"to": number,
"interactive": {
"type": "location_request_message",
"body": {
"text": bodyText
},
"action": {
"name": buttonName
}
}
});
return data;
}Última actualización