mirror of
				https://github.com/LonamiWebs/Telethon.git
				synced 2025-10-31 16:07:44 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			258 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			258 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 | |
|     <title>Telethon API</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <link href="css/docs.css" rel="stylesheet">
 | |
|     <link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro" rel="stylesheet">
 | |
|     <style>
 | |
|         body {
 | |
|             overflow: scroll;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
| <div id="main_div">
 | |
|     <input id="searchBox" type="text" onkeyup="updateSearch()"
 | |
|            placeholder="Search for requests and types…" />
 | |
| 
 | |
| <div id="searchDiv">
 | |
|     <table id="searchTable"></table>
 | |
| </div>
 | |
| 
 | |
| <div id="contentDiv">
 | |
|     <h1>Telethon API</h1>
 | |
|     <p>This documentation was generated straight from the <code>scheme.tl</code>
 | |
|     provided by Telegram. However, there is no official documentation per se
 | |
|     on what the methods, constructors and types mean. Nevertheless, this
 | |
|     page aims to provide easy access to all the available methods, their
 | |
|     definition and parameters.</p>
 | |
| 
 | |
|     <p>Although this documentation was generated for <i>Telethon</i>, it may
 | |
|     be useful for any other Telegram library out there.</p>
 | |
| 
 | |
|     <h3>Index</h3>
 | |
|     <ul>
 | |
|         <li>
 | |
|             <a href="#methods">Methods</a>
 | |
|             (<a href="methods/index.html">full list</a>)
 | |
|         </li>
 | |
|         <li>
 | |
|             <a href="#types">Types</a>
 | |
|             (<a href="types/index.html">full list</a>)
 | |
|         </li>
 | |
|         <li>
 | |
|             <a href="#constructors">Constructors</a>
 | |
|             (<a href="constructors/index.html">full list</a>)
 | |
|         </li>
 | |
|         <li><a href="#core">Core types</a></li>
 | |
|         <li><a href="#example">Full example</a></li>
 | |
|     </ul>
 | |
| 
 | |
|     <h3 id="methods">Methods</h3>
 | |
|     <p>Currently there are <b>{method_count} methods</b> available for the layer
 | |
|     {layer}. The complete list can be seen <a href="methods/index.html">here</a>.
 | |
|     <br /><br />
 | |
|     Methods, also known as <i>requests</i>, are used to interact with
 | |
|     the Telegram API itself and are invoked with a call to <code>.invoke()</code>.
 | |
|     <b>Only these</b> can be passed to <code>.invoke()</code>! You cannot
 | |
|     <code>.invoke()</code> types or constructors, only requests. After this,
 | |
|     Telegram will return a <code>result</code>, which may be, for instance,
 | |
|     a bunch of messages, some dialogs, users, etc.</p>
 | |
| 
 | |
|     <h3 id="types">Types</h3>
 | |
|     <p>Currently there are <b>{type_count} types</b>. You can see the full
 | |
|     list <a href="types/index.html">here</a>.</p>
 | |
| 
 | |
|     <p>The Telegram types are the <i>abstract</i> results that you receive
 | |
|     after invoking a request. They are "abstract" because they can have
 | |
|     multiple constructors. For instance, the abstract type <code>User</code>
 | |
|     can be either <code>UserEmpty</code> or <code>User</code>. You should,
 | |
|     most of the time, make sure you received the desired type by using
 | |
|     the <code>isinstance(result, Constructor)</code> Python function.
 | |
| 
 | |
|     When a request needs a Telegram type as argument, you should create
 | |
|     an instance of it by using one of its, possibly multiple, constructors.</p>
 | |
| 
 | |
|     <h3 id="constructors">Constructors</h3>
 | |
|     <p>Currently there are <b>{constructor_count} constructors</b>. You can see
 | |
|     the full list <a href="constructors/index.html">here</a>.</p>
 | |
| 
 | |
|     <p>Constructors are the way you can create instances of the abstract types
 | |
|     described above, and also the instances which are actually returned from
 | |
|     the functions although they all share a common abstract type.</p>
 | |
| 
 | |
|     <h3 id="core">Core types</h3>
 | |
|     <p>Core types are types from which the rest of Telegram types build upon:</p>
 | |
|     <ul>
 | |
|     <li id="int"><b>int</b>:
 | |
|         The value should be an integer type, like <span class="sh1">42</span>.
 | |
|         It should have 32 bits or less. You can check the bit length by
 | |
|         calling <code>a.bit_length()</code>, where <code>a</code> is an
 | |
|         integer variable.
 | |
|     </li>
 | |
|     <li id="long"><b>long</b>:
 | |
|         Different name for an integer type. The numbers given should have
 | |
|         64 bits or less.
 | |
|     </li>
 | |
|     <li id="int128"><b>int128</b>:
 | |
|         Another integer type, should have 128 bits or less.
 | |
|     </li>
 | |
|     <li id="int256"><b>int256</b>:
 | |
|         The largest integer type, allowing 256 bits or less.
 | |
|     </li>
 | |
|     <li id="double"><b>double</b>:
 | |
|         The value should be a floating point value, such as
 | |
|         <span class="sh1">123.456</span>.
 | |
|     </li>
 | |
|     <li id="vector"><b>Vector<T></b>:
 | |
|         If a type <code>T</code> is wrapped around <code>Vector<T></code>,
 | |
|         then it means that the argument should be a <i>list</i> of it.
 | |
|         For instance, a valid value for <code>Vector<int></code>
 | |
|         would be <code>[1, 2, 3]</code>.
 | |
|     </li>
 | |
|     <li id="string"><b>string</b>:
 | |
|         A valid UTF-8 string should be supplied. This is right how
 | |
|         Python strings work, no further encoding is required.
 | |
|     </li>
 | |
|     <li id="bool"><b>Bool</b>:
 | |
|         Either <code>True</code> or <code>False</code>.
 | |
|     </li>
 | |
|     <li id="true"><b>true</b>:
 | |
|         These arguments aren't actually sent but rather encoded as flags.
 | |
|         Any truthy value (<code>True</code>, <code>7</code>) will enable
 | |
|         this flag, although it's recommended to use <code>True</code> or
 | |
|         <code>None</code> to symbolize that it's not present.
 | |
|     </li>
 | |
|     <li id="bytes"><b>bytes</b>:
 | |
|         A sequence of bytes, like <code>b'hello'</code>, should be supplied.
 | |
|     </li>
 | |
|     <li id="date"><b>date</b>:
 | |
|         Although this type is internally used as an <code>int</code>,
 | |
|         you can pass a <code>datetime</code> object instead to work
 | |
|         with date parameters.
 | |
|     </li>
 | |
|     </ul>
 | |
| 
 | |
|     <h3 id="example">Full example</h3>
 | |
|     <p>The following example demonstrates:</p>
 | |
|     <ol>
 | |
|         <li>How to create a <code>TelegramClient</code>.</li>
 | |
|         <li>Connecting to the Telegram servers and authorizing an user.</li>
 | |
|         <li>Retrieving a list of chats (<i>dialogs</i>).</li>
 | |
|         <li>Invoking a request without the built-in methods.</li>
 | |
|     </ol>
 | |
|     <pre><span class="sh3">#!/usr/bin/python3</span>
 | |
| <span class="sh4">from</span> telethon <span class="sh4">import</span> TelegramClient
 | |
| <span class="sh4">from</span> telethon.tl.functions.messages <span class="sh4">import</span> GetHistoryRequest
 | |
| <span class="sh4">from</span> telethon.utils <span class="sh4">import</span> get_input_peer
 | |
| 
 | |
| <span class="sh3"># <b>(1)</b> Use your own values here</span>
 | |
| api_id = <span class="sh1">12345</span>
 | |
| api_hash = <span class="sh2">'0123456789abcdef0123456789abcdef'</span>
 | |
| phone_number = <span class="sh2">'+34600000000'</span>
 | |
| 
 | |
| <span class="sh3"># <b>(2)</b> Create the client and connect</span>
 | |
| client = TelegramClient(<span class="sh2">'username'</span>, api_id, api_hash)
 | |
| client.connect()
 | |
| 
 | |
| <span class="sh3"># Ensure you're authorized</span>
 | |
| if not client.is_user_authorized():
 | |
|     client.send_code_request(phone)
 | |
|     client.sign_in(phone, input(<span class="sh2">'Enter the code: '</span>))
 | |
| 
 | |
| <span class="sh3"># <b>(3)</b> Using built-in methods</span>
 | |
| dialogs, entities = client.get_dialogs(<span class="sh1">10</span>)
 | |
| entity = entities[<span class="sh1">0</span>]
 | |
| 
 | |
| <span class="sh3"># <b>(4)</b> !! Invoking a request manually !!</span>
 | |
| result = <b>client.invoke</b>(
 | |
|     GetHistoryRequest(
 | |
|         get_input_peer(entity),
 | |
|         limit=<span class="sh1">20</span>,
 | |
|         offset_date=<span class="sh1">None</span>,
 | |
|         offset_id=<span class="sh1">0</span>,
 | |
|         max_id=<span class="sh1">0</span>,
 | |
|         min_id=<span class="sh1">0</span>,
 | |
|         add_offset=<span class="sh1">0</span>))
 | |
| 
 | |
| <span class="sh3"># Now you have access to the first 20 messages</span>
 | |
| messages = result.messages</pre>
 | |
| 
 | |
|     <p>As it can be seen, manually invoking requests with
 | |
|     <code>client.invoke()</code> is way more verbose than using the built-in
 | |
|     methods (such as <code>client.get_dialogs()</code>. However, and given
 | |
|     that there are so many methods available, it's impossible to provide a nice
 | |
|     interface to things that may change over time. To get full access, however,
 | |
|     you're still able to invoke these methods manually.</p>
 | |
| </div>
 | |
| 
 | |
| <script>
 | |
| contentDiv = document.getElementById("contentDiv");
 | |
| searchDiv = document.getElementById("searchDiv");
 | |
| searchBox = document.getElementById("searchBox");
 | |
| searchTable = document.getElementById("searchTable");
 | |
| 
 | |
| requests = [{request_names}];
 | |
| types = [{type_names}];
 | |
| 
 | |
| requestsu = [{request_urls}];
 | |
| typesu = [{type_urls}];
 | |
| 
 | |
| function updateSearch() {
 | |
|     if (searchBox.value) {
 | |
|         contentDiv.style.display = "none";
 | |
|         searchDiv.style.display = "";
 | |
| 
 | |
|         var foundRequests = [];
 | |
|         var foundRequestsu = [];
 | |
|         for (var i = 0; i < requests.length; ++i) {
 | |
|             if (requests[i].toLowerCase().indexOf(searchBox.value) != -1) {
 | |
|                 foundRequests.push(requests[i]);
 | |
|                 foundRequestsu.push(requestsu[i]);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         var foundTypes = [];
 | |
|         var foundTypesu = [];
 | |
|         for (var i = 0; i < types.length; ++i) {
 | |
|             if (types[i].toLowerCase().indexOf(searchBox.value) != -1) {
 | |
|                 foundTypes.push(types[i]);
 | |
|                 foundTypesu.push(typesu[i]);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         var top = foundRequests.length > foundTypes.length ?
 | |
|                     foundRequests.length : foundTypes.length;
 | |
| 
 | |
|         result = "";
 | |
|         for (var i = 0; i <= top; ++i) {
 | |
|             result += "<tr><td>";
 | |
| 
 | |
|             if (i < foundRequests.length) {
 | |
|                 result +=
 | |
|                     '<a href="'+foundRequestsu[i]+'">'+foundRequests[i]+'</a>';
 | |
|             }
 | |
| 
 | |
|             result += "</td><td>";
 | |
| 
 | |
|             if (i < foundTypes.length) {
 | |
|                 result +=
 | |
|                     '<a href="'+foundTypesu[i]+'">'+foundTypes[i]+'</a>';
 | |
|             }
 | |
| 
 | |
|             result += "</td></tr>";
 | |
|         }
 | |
|         searchTable.innerHTML = result;
 | |
|     } else {
 | |
|         contentDiv.style.display = "";
 | |
|         searchDiv.style.display = "none";
 | |
|     }
 | |
| }
 | |
| 
 | |
| updateSearch();
 | |
| </script>
 | |
| </body>
 | |
| </html>
 |