MadelineProtoDocs/old_docs/API_docs_v41/methods/account.getWebAuthorization...

42 lines
1.1 KiB
Markdown

---
title: account.getWebAuthorizations
description: Get web [login widget](https://core.telegram.org/widgets/login) authorizations
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/methods/account_getWebAuthorizations.html
---
# Method: account.getWebAuthorizations
[Back to methods index](index.md)
Get web [login widget](https://core.telegram.org/widgets/login) authorizations
### Return type: [account.WebAuthorizations](../types/account.WebAuthorizations.md)
### Can bots use this method: **NO**
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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.WebAuthorizations = $MadelineProto->account->getWebAuthorizations();
```
Or, if you're into Lua:
```lua
account.WebAuthorizations = account.getWebAuthorizations({})
```