bots.GetRequestedWebViewButton
- class pyrogram.raw.functions.bots.GetRequestedWebViewButton
Telegram API function.
- Details:
Layer:
224ID:
BF25B7F3
- Parameters:
bot (
InputUser) – N/Awebapp_req_id (
str) – N/A
- Returns:
TL Schema
bots.getRequestedWebViewButton#bf25b7f3
bot:InputUser
webapp_req_id:string
= KeyboardButton
Parameter Tree
GetRequestedWebViewButton
├── bot →
InputUser│ ├──
InputUserEmpty│ ├──
InputUserSelf│ ├──
InputUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ └──
InputUserFromMessage│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── user_id →
long└── webapp_req_id →
stringExample
await app.invoke(
GetRequestedWebViewButton(
bot=await app.resolve_user(chat_id),
webapp_req_id="text",
)
)