php – 对KeyboardButton电报Bot使用request_contact
作者:互联网
我试着通过这个php脚本将用户的电话号码保存在电报机器人中:
apiRequest("sendMessage", array(
'chat_id' => $chat_id,
"text" => 'Ci vuoi inviare il tuo numero di telefono?',
'reply_markup' => array(
'keyboard' => array(
'text'=>"SHOW PHONE",
'request_contact'=>true
),
'one_time_keyboard' => true,
'resize_keyboard' => true
)
));
但它不起作用,可能是什么问题?
解决方法:
键盘必须是数组数组:
更新:
apiRequest("sendMessage", array(
'chat_id' => $chat_id,
"text" => 'Ci vuoi inviare il tuo numero di telefono?',
'reply_markup' => array(
'keyboard' => array(
array(
array(
'text'=>"SHOW PHONE",
'request_contact'=>true
)
)
),
'one_time_keyboard' => true,
'resize_keyboard' => true
)
));
标签:telegram-bot,php 来源: https://codeday.me/bug/20190727/1554784.html