1.4 KiB
1.4 KiB
title: account.getAuthorizationForm
description: Bots only: get telegram passport authorization form
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
Method: account.getAuthorizationForm
Bots only: get telegram passport authorization form
Parameters:
Name | Type | Description | Required |
---|---|---|---|
bot_id | int | Bot ID | Yes |
scope | string | Scope | Yes |
public_key | string | Bot's public key | Yes |
Return type: account_AuthorizationForm
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();
$account_AuthorizationForm = $MadelineProto->account->getAuthorizationForm(['bot_id' => int, 'scope' => 'string', 'public_key' => 'string', ]);
Or, if you're into Lua:
account_AuthorizationForm = account.getAuthorizationForm({bot_id=int, scope='string', public_key='string', })