Telegram APIは次のように言います:
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;
しかし、ロボットに何の反応も見られません。