如何在向webhook发送答案时对电报Bot API执行请求?

时间:2015-09-05 11:27:10

标签: php telegram telegram-bot

电报API say

  

如果您正在使用webhook,则可以在向webhook发送答案时对Bot API执行请求。

我尝试通过这个简单的代码来实现:

header('Content-Type: application/x-www-form-urlencoded');
$content = http_build_query(array(
    'method' => 'sendMessage',
    'chat_id' => 123,
    'text' => 'test 123'
));
file_put_contents("php://output", $content); // or echo $content;

但我在机器人中看不到任何反应。

0 个答案:

没有答案