我有一个带有irazasyed软件包的电报机器人,并且当用户类型(@botid aboutus)机器人显示如下用户文字时,现在将其设置为“内联模式”:
答案 0 :(得分:1)
解决了!
$results= json_encode( [
[
'type' => "article",
'id'=> "1",
'title'=> "chek inline keybord ",
'description'=> "test ",
'caption'=> "caption" ,
'input_message_content'=> ['message_text' => "you can share inline keyboard to other chat"],
'reply_markup'=>['inline_keyboard'=>[
[
['text'=>"text1",'url'=>''],
['text'=>"text2",'url'=>''],
['text'=>"shareToOtherChat",'switch_inline_query'=>'chek']
]
]],
'thumb_url'=> "https://avatars2.githubusercontent.com/u/10547598?v=3&s=88",
]
] );