1.7 KiB
1.7 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: YES
MadelineProto Example:
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', ]);
PWRTelegram HTTP API example (NOT FOR MadelineProto):
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - account.getAuthorizationForm
- params -
{"bot_id": int, "scope": "string", "public_key": "string", }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/account.getAuthorizationForm
Parameters:
bot_id - Json encoded int
scope - Json encoded string
public_key - Json encoded string
Or, if you're into Lua:
account_AuthorizationForm = account.getAuthorizationForm({bot_id=int, scope='string', public_key='string', })