电报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;
但我在机器人中看不到任何反应。