RequestWebViewRequest
Both users and bots may be able to use this method. See code examples.
---functions--- messages.requestWebView#178b480b flags:# from_bot_menu:flags.4?true silent:flags.5?true peer:InputPeer bot:InputUser url:flags.1?string start_param:flags.3?string theme_params:flags.2?DataJSON platform:string reply_to_msg_id:flags.0?int top_msg_id:flags.9?int send_as:flags.13?InputPeer = WebViewResult
Returns
| WebViewResult |
This type can only be an instance of:
| WebViewResultUrl |
Parameters
| peer | InputPeer | Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.). |
| bot | InputUser | Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.). |
| platform | string | |
| from_bot_menu | flag | This argument defaults to None and can be omitted. |
| silent | flag | This argument defaults to None and can be omitted. |
| url | string | This argument defaults to None and can be omitted. |
| start_param | string | This argument defaults to None and can be omitted. |
| theme_params | DataJSON | This argument defaults to None and can be omitted. |
| reply_to_msg_id | int | This argument defaults to None and can be omitted. |
| top_msg_id | int | This argument defaults to None and can be omitted. |
| send_as | InputPeer | This argument defaults to None and can be omitted. Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.). |
Known RPC errors
This request can't cause any RPC error as far as we know.
Example
from telethon.sync import TelegramClient
from telethon import functions, types
with TelegramClient(name, api_id, api_hash) as client:
result = client(functions.messages.RequestWebViewRequest(
peer='username',
bot='username',
platform='some string here',
from_bot_menu=True,
url='some string here',
start_param='some string here',
theme_params=types.DataJSON(
data='some string here'
),
top_msg_id=42,
send_as='username'
))
print(result.stringify())