如何使用php从我的机器人发送外部链接到电报组?链接中reply_markup的值应该是多少?

时间:2017-04-13 07:16:43

标签: php telegram-bot php-telegram-bot

我正在使用电报机器人将一些带有外部链接的文本作为按钮发送到其中。我试过以下代码bot我不知道要发送的Json值。拜托,任何人都可以帮助我吗?

$sendMsg = file_get_contents($boturl."/sendmessage?chat_id=".$chat_id."&text=".$c."&parse_mode=HTML&reply_markup=json_encode("?????")"); 

请帮帮我

1 个答案:

答案 0 :(得分:0)

试试这个

file_get_contents($boturl.'/sendmessage?chat_id='.$chat_id.'&text='.$c.'&reply_markup={"inline_keyboard":[[{"text":"Press here to open URL","url":"https://example.com"}]]}');