mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
30 lines
815 B
Markdown
30 lines
815 B
Markdown
|
---
|
||
|
title: "appWebViewResultUrl"
|
||
|
description: "Contains the link that must be used to open a direct link Mini App."
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: appWebViewResultUrl
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Contains the link that must be used to open a [direct link Mini App](https://core.telegram.org/api/bots/webapps#direct-link-mini-apps).
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|url|[string](/API_docs/types/string.html) | Yes|The URL to open|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [AppWebViewResult](/API_docs/types/AppWebViewResult.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$appWebViewResultUrl = ['_' => 'appWebViewResultUrl', 'url' => 'string'];
|
||
|
```
|