以下の関数は、share_your_phone_number インテントにフルフィルメントを提供することになっています。インテントが呼び出されると、電話番号の共有キーボードがテレグラムでユーザーに表示されます。
function share_your_phone_number(agent) {
agent.add(`Welcome.`);
agent.add(new Payload("telegram", {
"text": "Please click on button below to share your number",
"reply_markup": {
"one_time_keyboard": true,
"resize_keyboard": true,
"keyboard": [
[
{
"text": "Share my phone number",
"callback_data": "phone",
"request_contact": true
}
],
[
{
"text": "Cancel",
"callback_data": "Cancel"
}
]
]
}
}
));
}
インライン エディターで API をデプロイすると、電報ボット チャットで "Welcome" 文字列のみが返されます。キーボード ボタンは表示されません。
これを修正するには、手がかりが必要です。