1022 B
1022 B
title | description |
---|---|
account.getAuthorizations | account.getAuthorizations parameters, return type and example |
Method: account.getAuthorizations
Return type: account_Authorizations
Can bots use this method: NO
Example:
$MadelineProto = new \danog\MadelineProto\API();
$MadelineProto->session = 'mySession.madeline';
if (isset($number)) { // Login as a user
$MadelineProto->phone_login($number);
$code = readline('Enter the code you received: '); // Or do this in two separate steps in an HTTP API
$MadelineProto->complete_phone_login($code);
}
$account_Authorizations = $MadelineProto->account->getAuthorizations();
Or, if you're using the PWRTelegram HTTP API:
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/account.getAuthorizations
Parameters:
Or, if you're into Lua:
account_Authorizations = account.getAuthorizations({})