Answer the question
In order to leave comments, you need to log in
Why is the keyboard not displayed in the chat bot Vkontakte (php)?
It is not possible to display the keyboard in the response message. Here is the function code:
function vk_msg_send_keyboard($peer_id, $text, $button, $btncolor){
$kboard = array(
'one_time' => TRUE,
'buttons' => array(
'color' => 'positive',
'action'=> array(
'type' => 'text',
'payload' => '{"button": "1"}',
'label' => 'Улыбнитесь!')
)
);
$request_params = array(
'message' => $text,
'peer_id' => $peer_id,
'keyboard' => json_encode($kboard, JSON_UNESCAPED_UNICODE),
'access_token' => TOKEN,
'v' => '5.87'
);
$get_params = http_build_query($request_params);
file_get_contents('https://api.vk.com/method/messages.send?'. $get_params);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question