Method: payments.getStarsRevenueAdsAccountUrl
Returns a URL for a Telegram Ad platform account that can be used to set up advertisements for channel/bot in peer
, paid using the Telegram Stars owned by the specified peer
, see here » for more info.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | Channel or bot that owns the stars. | Optional |
Return type: payments.StarsRevenueAdsAccountUrl
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_StarsRevenueAdsAccountUrl = $MadelineProto->payments->getStarsRevenueAdsAccountUrl(peer: $InputPeer, );