Method: payments.getSuggestedStarRefBots
Obtain a list of suggested mini apps with available affiliate programs
order_by_revenue
and order_by_date
are mutually exclusive: if neither is set, results are sorted by profitability.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
order_by_revenue | Bool | If set, orders results by the expected revenue | Optional |
order_by_date | Bool | If set, orders results by the creation date of the affiliate program | Optional |
peer | Username, chat ID, Update, Message or InputPeer | The peer that will become the affiliate: star commissions will be transferred to this peer’s star balance. | Optional |
offset | string | Offset for pagination, taken from payments.suggestedStarRefBots.next_offset , initially empty. | Optional |
limit | int | Maximum number of results to return, see pagination | Optional |
Return type: payments.SuggestedStarRefBots
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_SuggestedStarRefBots = $MadelineProto->payments->getSuggestedStarRefBots(order_by_revenue: $Bool, order_by_date: $Bool, peer: $InputPeer, offset: 'string', limit: $int, );