Telegram webhook php 机器人没有回答

Telegram webhook php bot doesn't answer

我正在尝试使用 webhook 设置电报机器人。我可以让它与 getUpdates 一起工作,但我希望它与 webhook 一起工作。

我的站点(托管 bot php 脚本)的 SSL 证书有效(我在地址栏中看到绿色锁):

我使用

设置了 webhook
https://api.telegram.org/bot<token>/setwebhook?url=https://www.example.com/bot/bot.php

我得到:{"ok":true,"result":true,"description":"Webhook was set"}

(我不知道这是否重要,但我已授予文件夹和脚本的 rwx 权限)

php 机器人:(https://www.example.com/bot/bot.php)

<?php

$botToken = <token>;
$website = "https://api.telegram.org/bot".$botToken;

#$update = url_get_contents('php://input');
$update = file_get_contents('php://input');
$update = json_decode($update, TRUE);

$chatId = $update["message"]["chat"]["id"];
$message = $update["message"]["text"];

switch($message) {
    case "/test":
        sendMessage($chatId, "test");
        break;
    case "/hi":
        sendMessage($chatId, "hi there!");
        break;
    default:
        sendMessage($chatId, "default");
}

function sendMessage ($chatId, $message) {
    $url = $GLOBALS[website]."/sendMessage?chat_id=".$chatId."&text=".urlencode($message);
    url_get_contents($url);

}

function url_get_contents($Url) {
    if(!function_exists('curl_init')) {
        die('CURL is not installed!');
    }
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $Url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec($ch);
    curl_close($ch);
    return $output;
}

?>

但是当我向机器人写任何东西时,我没有收到任何答复...

知道为什么吗?

谢谢

在你的问题中,脚本位置不明确。看到您的代码,您似乎试图通过 url_get_contents 加载请求以检索电报服务器响应。如果您的机器人在 没有 webhook 的情况下工作,那么这是正确的方法。否则,设置 webhook 后,您必须处理 incoming 请求。

也就是说,如果您将 webhook 设置为 https://example.com/mywebhook.php,在您的 https://example.com/mywebhook.php 脚本中您必须编写如下内容:

<?php

$request = file_get_contents( 'php://input' );
#          ↑↑↑↑ 
$request = json_decode( $request, TRUE );

if( !$request )
{
    // Some Error output (request is not valid JSON)
}
elseif( !isset($request['update_id']) || !isset($request['message']) )
{
    // Some Error output (request has not message)
}
else
{
    $chatId  = $request['message']['chat']['id'];
    $message = $request['message']['text'];

    switch( $message )
    {
        // Process your message here
    }
}