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

How to send external link to the telegram group from my bot using php? what should be the value to reply_markup in the link?

我正在使用电报机器人发送一些带有外部 link 的文本作为按钮。我尝试使用以下代码机器人,但我不知道要发送的 Json 值。拜托,有人可以帮助我吗?

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

请帮帮我

试试这个

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"}]]}');