电报机器人无法取消禁止用户

时间:2020-02-08 05:12:07

标签: php telegram telegram-bot

发送消息的功能:

 const TOKEN = '99999999:AAAAAAAJjZ_T6hAAAAAAAAAAAAAAA';
 const URL = 'https://api.telegram.org/bot'.TOKEN.'/';

function sendGetRequest($method,$params=null){
    if($params){
        $url = URL.$method.'?'.http_build_query($params);
    }else{
        $url = URL.$method;
    }
    return json_decode(file_get_contents($url), JSON_OBJECT_AS_ARRAY);
}

函数调用:

$un_ban_params = [
            'chat_id'=> $chat_id,
            'user_id'=> $user_id*1,
                 ];

sendGetRequest( 'unbanChatMember', $un_ban_params);

该调用返回null。 因此,不会出现返回该群组的链接。

1 个答案:

答案 0 :(得分:0)

找到答案。 “ unbanChatMember”仅在超组和通道中有效。对于简单的组,此方法不起作用。