1003 B
1003 B
title | description |
---|---|
getGroupFull | Returns full information about a group by its identifier |
Method: getGroupFull
Returns full information about a group by its identifier
Params:
Name | Type | Required | Description |
---|---|---|---|
group_id | int | Yes | Group identifier |
Return type: GroupFull
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$GroupFull = $MadelineProto->getGroupFull(['group_id' => int, ]);
Or, if you're into Lua:
GroupFull = getGroupFull({group_id=int, })