Method: payments.getConnectedStarRefBots
Fetch all affiliations we have created for a certain peer
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The affiliated peer | Optional |
offset_date | int | If set, returns only results older than the specified unixtime | Optional |
offset_link | string | Offset for pagination, taken from the last returned connectedBotStarRef.url (initially empty) | Optional |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: payments.ConnectedStarRefBots
Can userbots use this method: YES
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$payments_ConnectedStarRefBots = $MadelineProto->payments->getConnectedStarRefBots(peer: $InputPeer, offset_date: $int, offset_link: 'string', limit: $int, );