request_chat_join_web_view()¶
- Client.request_chat_join_web_view()¶
Request a web view URL for a chat join button.
Used when a bot sends a web view button as part of a
Usable by Users BotschatInviteJoinResultWebViewresponse.- Parameters:
query_id (
int) – The query ID from the invite join result.platform (
str) – Client platform string (e.g."android","ios","web").theme_params (
dict, optional) – Theme parameters as a JSON-serializable dict.
- Returns:
WebViewResultUrl– The web view URL.
Example
result = await app.request_chat_join_web_view( query_id=123456, platform="android" ) print(result.url)