mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-02-16 19:41:07 +03:00
54 lines
3.9 KiB
HTML
54 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>SendWebViewResultMessageRequest</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link id="style" href="../../css/docs.dark.css" rel="stylesheet">
|
|
<script>
|
|
document.getElementById("style").href = "../../css/docs."
|
|
+ (localStorage.getItem("theme") || "light")
|
|
+ ".css";
|
|
</script>
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro"
|
|
rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="main_div"><ul class="horizontal"><li><a href="../../index.html">API</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="../index.html">Methods</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="index.html">Messages</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="send_web_view_result_message.html">SendWebViewResultMessageRequest</a></li></ul><h1>SendWebViewResultMessageRequest</h1><p>Both users and bots <strong>may</strong> be able to use this request. <a href="#examples">See code examples.</a></p><pre>---functions---
|
|
messages.sendWebViewResultMessage#0a4314f5 bot_query_id:<a href="../../index.html#string">string</a> result:<a href="../../types/input_bot_inline_result.html">InputBotInlineResult</a> = <a href="../../types/web_view_message_sent.html">WebViewMessageSent</a></pre><button onclick="cp('from telethon.tl.functions.messages import SendWebViewResultMessageRequest');">Copy import to the clipboard</button><h3>Returns</h3><table><tr><td><a href="../../types/web_view_message_sent.html">WebViewMessageSent</a></td></tr></table><p>This type can only be an instance of:</p><table><tr><td><a href="../../constructors/web_view_message_sent.html">WebViewMessageSent</a></td></tr></table><h3>Parameters</h3><table><tr><td><b>bot_query_id</b></td><td style="text-align:center"><a href="../../index.html#string">string</a></td><td></td></tr><tr><td><b>result</b></td><td style="text-align:center"><a href="../../types/input_bot_inline_result.html">InputBotInlineResult</a></td><td></td></tr></table><h1>Known RPC errors</h1><p>This request can't cause any RPC error as far as we know.</p><h1 id="examples">Example</h1><pre><strong>from</strong> telethon.sync <strong>import</strong> TelegramClient
|
|
<strong>from</strong> telethon <strong>import</strong> functions, types
|
|
|
|
<strong>with</strong> TelegramClient(name, api_id, api_hash) <strong>as</strong> client:
|
|
result = client(functions.messages.SendWebViewResultMessageRequest(
|
|
bot_query_id=<em>'some string here'</em>,
|
|
result=types.InputBotInlineResult(
|
|
id=<em>'some string here'</em>,
|
|
type=<em>'some string here'</em>,
|
|
send_message=types.InputBotInlineMessageMediaAuto(
|
|
message=<em>'Hello there!'</em>,
|
|
invert_media=<strong>True</strong>
|
|
),
|
|
title=<em>'My awesome title'</em>,
|
|
description=<em>'some string here'</em>,
|
|
url=<em>'some string here'</em>,
|
|
thumb=types.InputWebDocument(
|
|
url=<em>'some string here'</em>,
|
|
size=42,
|
|
mime_type=<em>'some string here'</em>,
|
|
attributes=[types.DocumentAttributeImageSize(
|
|
w=42,
|
|
h=42
|
|
)]
|
|
),
|
|
content=types.InputWebDocument(
|
|
url=<em>'some string here'</em>,
|
|
size=42,
|
|
mime_type=<em>'some string here'</em>,
|
|
attributes=[types.DocumentAttributeImageSize(
|
|
w=42,
|
|
h=42
|
|
)]
|
|
)
|
|
)
|
|
))
|
|
print(result.stringify())</pre><textarea id="c" class="invisible"></textarea><script>function cp(t){var c=document.getElementById("c");c.value=t;c.select();try{document.execCommand("copy")}catch(e){}}</script></div><script>prependPath = "../../";</script><script src="../../js/search.js"></script></body></html> |