如何通过BOT电报从已发送的消息中获取Message_id?

时间:2017-07-31 07:39:19

标签: php telegram-bot

我编制了bot电报。

我想通过Bot获取message_id,当我向群组发送消息时。

我的代码为PHP

$token = "MY_BOT's_TOKEN";

$data = [
    'text' => 'my message here',
    'chat_id' => 'the_chat_id_here'
];

file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data) );

怎么做?

最好的考虑。

1 个答案:

答案 0 :(得分:2)

您的file_get_contents调用返回包含状态代码和messageId的结果。

$result = file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data) );