如何从服务器为电报BOT定义命令

时间:2015-07-22 19:26:47

标签: php telegram telegram-bot

我用@botfather创建了一个机器人,一切都还好。现在我想将命令从我的主机设置为电报。我在根目录中创建了 Bot.php

Bot.php

$string = json_decode(file_get_contents('php://input'));

    function objectToArray( $object )
    {
        if( !is_object( $object ) && !is_array( $object ) )
        {
            return $object;
        }
        if( is_object( $object ) )
        {
            $object = get_object_vars( $object );
        }
        return array_map( 'objectToArray', $object );
    }

    $result = objectToArray($string);
    $user_id = $result['message']['from']['id'];
    $text = $result['message']['text'];
    if($text == 'Hi')
    $text_reply = 'Hi';
if($text == 'Your name')
    $text_reply = 'jJoe';

    $token = '';
    $text_reply = 'Got you Buddy.';

    $url = 'https://api.telegram.org/bot'.tokenNumber.'/sendMessage?chat_id='.$user_id;
    $url .= '&text=' .$text_reply;


    $res = file_get_contents($url);  

现在我浏览这个:https://api.telegram.org/bot112186325:tokenNumber/setWebhook?url=https://partamsms.ir/bot.php

我明白了:{"ok":true,"result":true,"description":"Webhook was set"}

但我无法在电报帐户中运行这些命令。

如何从我的服务器运行命令?

万分感谢

1 个答案:

答案 0 :(得分:4)

根据您的评论,您希望根据用户输入的消息做出不同反应的内容。因此,使用您的示例代码,您可以将其更改为:

// NOTE: you can pass 'true' as the second argument to decode as array
$result= json_decode(file_get_contents('php://input'), true);
error_log(print_r($result, 1), 3, '/path/to/logfile.log');

$user_id = $result['message']['from']['id'];
$text = $result['message']['text'];

// TODO: use something like strpos() or strcmp() for more flexibility
switch (true)
{
    case $text == '/hi':
        $text_reply = 'Hello';
        break;

    case $text == '/yourname':
        // TODO: use the getMe API call to get the bot information
        $text_reply = 'jJoe';
        break;

    default:
        $text_reply = 'not sure what you want?';
        break;
}

$token = '';
$url = 'https://api.telegram.org/bot'.tokenNumber.'/sendMessage?chat_id='.$user_id;
$url .= '&text=' .$text_reply;
$res = file_get_contents($url);  

所以,这几乎是你已经拥有的一个轻微的重构......如果问题是你的 Bot.php 脚本没有触发,可能是因为页面不公开。您为Telegram指定的webhook必须是可公开访问的URL。我试图点击https://partamsms.ir/bot.php但我无法接触它。

另一种方法是使用getUpdates方法代替cron脚本每5秒左右运行一次。