2019-08-15 20:25:16 +02:00
|
|
|
---
|
|
|
|
title: urlAuthResultAccepted
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Details about an accepted authorization request, for more info [click here »](https://core.telegram.org/api/url-authorization)
|
2019-08-15 20:25:16 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: urlAuthResultAccepted
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Details about an accepted authorization request, for more info [click here »](https://core.telegram.org/api/url-authorization)
|
2019-08-15 20:25:16 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|url|[string](../types/string.md) | Yes|The URL name of the website on which the user has logged in.|
|
2019-08-15 20:25:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [UrlAuthResult](../types/UrlAuthResult.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$urlAuthResultAccepted = ['_' => 'urlAuthResultAccepted', 'url' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
urlAuthResultAccepted={_='urlAuthResultAccepted', url='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|