Для типа «шаблон» сообщение отправляется и принимается, но для типа «текст» не работает, я получаю сообщение как успешное, но сообщение не доходит до получателя. в чем может быть проблема?
Сообщение успешно отправлено:
Array
(
[messaging_product] => whatsapp
[contacts] => Array
(
[0] => Array
(
[input] => +40
[wa_id] => 407
)
)
[messages] => Array
(
[0] => Array
(
[id] => wamid.adsasdHBgLNDA3NTM0NzQ4MDYVAgARGBI2Mjc0REJBNkRCMzIxQjc0OEUA
[message_status] => accepted
)
)
)
/*this is not working $data = [
'messaging_product' => 'whatsapp',
"recipient_type"=> "individual",
"to"=> $to,
"type"=>"text",
"text"=>[
"preview_url"=>true,
"body"=>"Your verification code is 1234"
]
];*/
//this is working
$data = [
'messaging_product' => 'whatsapp',
'to' => $to,
'type' => 'template',
'template' => [
'name' => 'hello_world',
'language' => [
'code' =>'en_US'
]
]
];
Подробнее здесь: https://stackoverflow.com/questions/787 ... t-received
Текст типа сообщения WhatsApp Business API не получен ⇐ Php
-
- Похожие темы
- Ответы
- Просмотры
- Последнее сообщение