Update content of files

This commit is contained in:
GitHub Action 2023-04-27 15:27:45 +00:00
parent 7feccd3427
commit 5c41e8ff8f
10 changed files with 92 additions and 135 deletions

View file

@ -205,7 +205,7 @@ After obtaining the ID token, call <a href="/method/account.verifyEmail">account
<p>On success, the <a href="/method/account.verifyEmail">account.verifyEmail</a> method will return a <a href="/constructor/account.emailVerifiedLogin">account.emailVerifiedLogin</a> constructor with an <a href="/constructor/auth.sentCode">auth.sentCode</a> constructor that should be handled <a href="#code-types">as usual »</a>. </p>
</li>
</ul>
<p>If the user cannot access their email address and <a href="/constructor/auth.sentCodeTypeEmailCode">auth.sentCodeTypeEmailCode</a>.<code>reset_pending_date</code> is not set, an email reset may be requested using <a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a>: this will populate</p>
<p>If the user cannot access their email address, an email reset may be requested using <a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a>. </p>
<p>To change the login email after login, pass <a href="/constructor/emailVerifyPurposeLoginChange">emailVerifyPurposeLoginChange</a> as <code>purpose</code>, following the exact same Google ID/Apple ID/email code login flow as above: on success, the <a href="/method/account.verifyEmail">account.verifyEmail</a> method will return an <a href="/constructor/account.emailVerified">account.emailVerified</a> constructor.</p>
<h3><a class="anchor" href="#sign-insign-up" id="sign-insign-up" name="sign-insign-up"><i class="anchor-icon"></i></a>Sign in/sign up</h3>
<p>When user enters verification code, the <a href="/method/auth.signIn">auth.signIn</a> method must be used to validate it and possibly sign user in.</p>

View file

@ -78,13 +78,13 @@ The UI should then show a list of suggested folder combinations. </p>
<p>Once configuration is finished, apps call <a href="/method/messages.updateDialogFilter">messages.updateDialogFilter</a> to create or update existing folders.<br>
As per the <a href="/constructor/dialogFilter">dialogFilter</a>/<a href="/constructor/dialogFilterChatlist">dialogFilterChatlist</a> constructors, folders have multiple flags that can be combined to determine which chats should be included in (or excluded from) the folder, which emoji to use as icon for the folder and its name.<br>
Folders can also have up to <code>dialogs_folder_pinned_limit_*</code> pinned chats, as determined by the <a href="/api/config#client-configuration">client configuration</a>.</p>
<p><a href="/constructor/dialogFilterChatlist">dialogFilterChatlist</a> constructors are used to represent imported <a href="#sharing-folders">shareable folders</a>. </p>
<p><a href="/constructor/dialogFilterChatlist">dialogFilterChatlist</a> constructors are used to represent imported <a href="#shared-folders">shareable folders</a>. </p>
<p>To reorder existing folders, <a href="/method/messages.updateDialogFiltersOrder">messages.updateDialogFiltersOrder</a> should be used with the IDs of the various dialog filters.</p>
<p><a href="/api/premium">Premium</a> users also have access to a <a href="/constructor/dialogFilterDefault">dialogFilterDefault</a> constructor, used only when reordering folders to indicate the default (all chats) folder. </p>
<p>To delete folders, use <a href="/method/messages.updateDialogFilter">messages.updateDialogFilter</a> without populating the <code>filter</code> flag field. </p>
<p>Clients can receive <a href="/constructor/updateDialogFilter">updateDialogFilter</a>, <a href="/constructor/updateDialogFilterOrder">updateDialogFilterOrder</a> updates with new filter information, generated by other clients when modifying folder info.<br>
Clients can also receive <a href="/constructor/updateDialogFilters">updateDialogFilters</a>, in which case folder info should be refetched manually using <a href="/method/messages.getDialogFilters">messages.getDialogFilters</a>.</p>
<h4><a class="anchor" href="#sharing-folders" id="sharing-folders" name="sharing-folders"><i class="anchor-icon"></i></a>Sharing folders</h4>
<h4><a class="anchor" href="#shared-folders" id="shared-folders" name="shared-folders"><i class="anchor-icon"></i></a>Shared folders</h4>
<pre><code><a href='/constructor/inputChatlistDialogFilter'>inputChatlistDialogFilter</a>#f3e0da33 filter_id:<a href='/type/int'>int</a> = <a href='/type/InputChatlist'>InputChatlist</a>;
<a href='/constructor/exportedChatlistInvite'>exportedChatlistInvite</a>#0c5181ac flags:<a href='/type/%23'>#</a> title:<a href='/type/string'>string</a> url:<a href='/type/string'>string</a> peers:<a href='/type/Vector%20t'>Vector</a>&lt;<a href='/type/Peer'>Peer</a>&gt; = <a href='/type/ExportedChatlistInvite'>ExportedChatlistInvite</a>;
@ -127,7 +127,7 @@ If the user can't join any of the <code>peers</code> of a folder, the folder can
<p>Users that import a folder should retrieve additions made to the peer list by invoking <a href="/method/chatlists.getChatlistUpdates">chatlists.getChatlistUpdates</a> at most every <code>chatlist_update_period</code> seconds (a <a href="/api/config#chatlist-update-period">client configuration parameter »</a>).<br>
If the returned <code>missing_peers</code> list is non-empty, the client should present it to the user, who may choose to join all or a subset of them (excluding inaccessible channels/supergroups), passing them to the <code>peers</code> parameter of <a href="/method/chatlists.joinChatlistUpdates">chatlists.joinChatlistUpdates</a>.<br>
If after excluding inaccessible peers and peers deselected by the user the <code>peers</code> list is empty, invoke <a href="/method/chatlists.hideChatlistUpdates">chatlists.hideChatlistUpdates</a> instead of <a href="/method/chatlists.joinChatlistUpdates">chatlists.joinChatlistUpdates</a>.</p>
<p>When remvoing an imported folder, the list of included peers should be presented to the user prior to deletion, with the peers listed in <a href="/method/chatlists.getLeaveChatlistSuggestions">chatlists.getLeaveChatlistSuggestions</a> already pre-marked for deletion: the user may then choose to delete or keep some or all of the groups and channels of the folder when invoking <a href="/method/chatlists.leaveChatlist">chatlists.leaveChatlist</a> to delete the folder, specifying in <code>peers</code> the list of channels and groups from the folder that should also be removed.</p>
<p>When removing an imported folder, the list of included peers should be presented to the user prior to deletion, with the peers listed in <a href="/method/chatlists.getLeaveChatlistSuggestions">chatlists.getLeaveChatlistSuggestions</a> already pre-marked for deletion: the user may then choose to delete or keep some or all of the groups and channels of the folder when invoking <a href="/method/chatlists.leaveChatlist">chatlists.leaveChatlist</a> to delete the folder, specifying in <code>peers</code> the list of channels and groups from the folder that should also be removed.</p>
<h3><a class="anchor" href="#peer-folders" id="peer-folders" name="peer-folders"><i class="anchor-icon"></i></a>Peer folders</h3>
<p>The API also has another method for identifying groups of peers, used by archived chats.</p>
<p>Schema:</p>

View file

@ -158,7 +158,7 @@ These links can be generated even for profiles that don't have a username, and t
</tbody>
</table>
<h3><a class="anchor" href="#chat-folder-links" id="chat-folder-links" name="chat-folder-links"><i class="anchor-icon"></i></a>Chat folder links</h3>
<p>Used to invite users to private groups and channels, see <a href="/api/folders#sharing-folders">here for more info on how to generate such links »</a>. </p>
<p>Used to invite users to private groups and channels, see <a href="/api/folders#shared-folders">here for more info on how to generate such links »</a>. </p>
<p><code>t.me</code> syntax:</p>
<pre><code>t.me/addlist/&lt;slug&gt;</code></pre>
<p><code>tg:</code> syntax:</p>
@ -176,7 +176,7 @@ These links can be generated even for profiles that don't have a username, and t
<tr>
<td><code>slug</code></td>
<td style="text-align: center;">Required</td>
<td>Invite slug to <a href="/api/folders#sharing-folders">check or import »</a></td>
<td>Invite slug to <a href="/api/folders#shared-folders">check or import »</a></td>
</tr>
</tbody>
</table>

View file

@ -94,12 +94,12 @@
<tr>
<td><strong>reset_available_period</strong></td>
<td style="text-align: center;"><a href="/mtproto/TL-combinators#conditional-fields">flags</a>.3?<a href="/type/int">int</a></td>
<td> </td>
<td>The login email can be reset by invoking <a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a> and waiting for the specified amount of seconds.</td>
</tr>
<tr>
<td><strong>reset_pending_date</strong></td>
<td style="text-align: center;"><a href="/mtproto/TL-combinators#conditional-fields">flags</a>.4?<a href="/type/int">int</a></td>
<td> </td>
<td>An email reset was already requested, and will occur at the specified date.</td>
</tr>
</tbody>
</table>
@ -108,6 +108,8 @@
<h3><a class="anchor" href="#related-pages" id="related-pages" name="related-pages"><i class="anchor-icon"></i></a>Related pages</h3>
<h4><a class="anchor" href="#pattern-matching" id="pattern-matching" name="pattern-matching"><i class="anchor-icon"></i></a><a href="/api/pattern">Pattern matching</a></h4>
<p>Some methods require the client to verify if the data obtained from an external source matches a certain pattern.</p>
<h4><a class="anchor" href="#authresetloginemail" id="authresetloginemail" name="authresetloginemail"><i class="anchor-icon"></i></a><a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a></h4>
<p>Reset the <a href="https://core.telegram.org/api/auth#email-verification">login email »</a>.</p>
<h4><a class="anchor" href="#user-authorization" id="user-authorization" name="user-authorization"><i class="anchor-icon"></i></a><a href="/api/auth">User Authorization</a></h4>
<p>How to register a user's phone to start using the API.</p></div>

View file

@ -4,28 +4,10 @@
<meta charset="utf-8">
<title>chatlists.getLeaveChatlistSuggestions</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="description" content="Parameters
Name
Type
Description
chatlist
InputChatlist
 
Result
Vector&lt;Peer&gt;
Bots can use this method">
<meta property="description" content="Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.">
<meta property="og:title" content="chatlists.getLeaveChatlistSuggestions">
<meta property="og:image" content="">
<meta property="og:description" content="Parameters
Name
Type
Description
chatlist
InputChatlist
 
Result
Vector&lt;Peer&gt;
Bots can use this method">
<meta property="og:description" content="Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.">
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
@ -60,7 +42,8 @@ Bots can use this method">
<div class="dev_page_bread_crumbs"><ul class="breadcrumb clearfix"><li><a href="/api" >API</a></li><i class="icon icon-breadcrumb-divider"></i><li><a href="/methods" >All Methods</a></li><i class="icon icon-breadcrumb-divider"></i><li><a href="/method/chatlists.getLeaveChatlistSuggestions" >chatlists.getLeaveChatlistSuggestions</a></li></ul></div>
<h1 id="dev_page_title">chatlists.getLeaveChatlistSuggestions</h1>
<div id="dev_page_content"><p><div class="clearfix">
<div id="dev_page_content"><p>Returns identifiers of pinned or always included chats from a chat folder imported using a <a href="/api/links#chat-folder-links">chat folder deep link »</a>, which are suggested to be left when the chat folder is deleted.</p>
<p><div class="clearfix">
<ul class="dev_layer_select slightly-pull-right nav nav-pills">
<li class="dropdown">
<a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#">Layer 158 <b class="caret"></b></a>
@ -87,13 +70,16 @@ Bots can use this method">
<tr>
<td><strong>chatlist</strong></td>
<td style="text-align: center;"><a href="/type/InputChatlist">InputChatlist</a></td>
<td> </td>
<td>Folder ID</td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#result" id="result" name="result"><i class="anchor-icon"></i></a>Result</h3>
<p><a href="/type/Vector%20t">Vector</a>&lt;<a href="/type/Peer">Peer</a>&gt;</p>
<h3><a class="anchor" href="#bots-can-use-this-method" id="bots-can-use-this-method" name="bots-can-use-this-method"><i class="anchor-icon"></i></a>Bots can use this method</h3></div>
<h3><a class="anchor" href="#bots-can-use-this-method" id="bots-can-use-this-method" name="bots-can-use-this-method"><i class="anchor-icon"></i></a>Bots can use this method</h3>
<h3><a class="anchor" href="#related-pages" id="related-pages" name="related-pages"><i class="anchor-icon"></i></a>Related pages</h3>
<h4><a class="anchor" href="#deep-links" id="deep-links" name="deep-links"><i class="anchor-icon"></i></a><a href="/api/links">Deep links</a></h4>
<p>Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.</p></div>
</div>

View file

@ -82,7 +82,7 @@
<tr>
<td><strong>peers</strong></td>
<td style="text-align: center;"><a href="/type/Vector%20t">Vector</a>&lt;<a href="/type/InputPeer">InputPeer</a>&gt;</td>
<td>List of new chats to join, fetched using <a href="/method/chatlists.checkChatlistInvite">chatlists.checkChatlistInvite</a> and filtered as specified in the <a href="/api/folders#sharing-folders">documentation »</a>.</td>
<td>List of new chats to join, fetched using <a href="/method/chatlists.checkChatlistInvite">chatlists.checkChatlistInvite</a> and filtered as specified in the <a href="/api/folders#shared-folders">documentation »</a>.</td>
</tr>
</tbody>
</table>

View file

@ -82,7 +82,7 @@
<tr>
<td><strong>peers</strong></td>
<td style="text-align: center;"><a href="/type/Vector%20t">Vector</a>&lt;<a href="/type/InputPeer">InputPeer</a>&gt;</td>
<td>List of new chats to join, fetched using <a href="/method/chatlists.getChatlistUpdates">chatlists.getChatlistUpdates</a> and filtered as specified in the <a href="/api/folders#sharing-folders">documentation »</a>.</td>
<td>List of new chats to join, fetched using <a href="/method/chatlists.getChatlistUpdates">chatlists.getChatlistUpdates</a> and filtered as specified in the <a href="/api/folders#shared-folders">documentation »</a>.</td>
</tr>
</tbody>
</table>

View file

@ -4,34 +4,10 @@
<meta charset="utf-8">
<title>chatlists.leaveChatlist</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="description" content="Parameters
Name
Type
Description
chatlist
InputChatlist
 
peers
Vector&lt;InputPeer&gt;
 
Result
Updates
Bots can use this method">
<meta property="description" content="Delete a folder imported using a chat folder deep link »">
<meta property="og:title" content="chatlists.leaveChatlist">
<meta property="og:image" content="">
<meta property="og:description" content="Parameters
Name
Type
Description
chatlist
InputChatlist
 
peers
Vector&lt;InputPeer&gt;
 
Result
Updates
Bots can use this method">
<meta property="og:description" content="Delete a folder imported using a chat folder deep link »">
<link rel="icon" type="image/svg+xml" href="/img/website_icon.svg?4">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
@ -66,7 +42,8 @@ Bots can use this method">
<div class="dev_page_bread_crumbs"><ul class="breadcrumb clearfix"><li><a href="/api" >API</a></li><i class="icon icon-breadcrumb-divider"></i><li><a href="/methods" >All Methods</a></li><i class="icon icon-breadcrumb-divider"></i><li><a href="/method/chatlists.leaveChatlist" >chatlists.leaveChatlist</a></li></ul></div>
<h1 id="dev_page_title">chatlists.leaveChatlist</h1>
<div id="dev_page_content"><p><div class="clearfix">
<div id="dev_page_content"><p>Delete a folder imported using a <a href="/api/links#chat-folder-links">chat folder deep link »</a></p>
<p><div class="clearfix">
<ul class="dev_layer_select slightly-pull-right nav nav-pills">
<li class="dropdown">
<a class="dropdown-toggle" onclick="return dropdownClick(this, event)" href="#">Layer 158 <b class="caret"></b></a>
@ -100,18 +77,21 @@ Bots can use this method">
<tr>
<td><strong>chatlist</strong></td>
<td style="text-align: center;"><a href="/type/InputChatlist">InputChatlist</a></td>
<td> </td>
<td>Folder ID</td>
</tr>
<tr>
<td><strong>peers</strong></td>
<td style="text-align: center;"><a href="/type/Vector%20t">Vector</a>&lt;<a href="/type/InputPeer">InputPeer</a>&gt;</td>
<td> </td>
<td>Also leave the specified channels and groups</td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#result" id="result" name="result"><i class="anchor-icon"></i></a>Result</h3>
<p><a href="/type/Updates">Updates</a></p>
<h3><a class="anchor" href="#bots-can-use-this-method" id="bots-can-use-this-method" name="bots-can-use-this-method"><i class="anchor-icon"></i></a>Bots can use this method</h3></div>
<h3><a class="anchor" href="#bots-can-use-this-method" id="bots-can-use-this-method" name="bots-can-use-this-method"><i class="anchor-icon"></i></a>Bots can use this method</h3>
<h3><a class="anchor" href="#related-pages" id="related-pages" name="related-pages"><i class="anchor-icon"></i></a>Related pages</h3>
<h4><a class="anchor" href="#deep-links" id="deep-links" name="deep-links"><i class="anchor-icon"></i></a><a href="/api/links">Deep links</a></h4>
<p>Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.</p></div>
</div>

View file

@ -231,6 +231,10 @@
<td>Verify an email address.</td>
</tr>
<tr>
<td><a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a></td>
<td>Reset the <a href="https://core.telegram.org/api/auth#email-verification">login email »</a>.</td>
</tr>
<tr>
<td><a href="/method/auth.checkPassword">auth.checkPassword</a></td>
<td>Try logging to an account protected by a <a href="/api/srp">2FA password</a>.</td>
</tr>
@ -302,6 +306,10 @@
<td><a href="/method/auth.requestFirebaseSms">auth.requestFirebaseSms</a></td>
<td>Request an SMS code via Firebase.</td>
</tr>
<tr>
<td><a href="/method/auth.importWebTokenAuthorization">auth.importWebTokenAuthorization</a></td>
<td>Login by importing an authorization token</td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#working-with-gdpr-export" id="working-with-gdpr-export" name="working-with-gdpr-export"><i class="anchor-icon"></i></a>Working with GDPR export</h3>
@ -1050,6 +1058,10 @@
<td>Upload a file and associate it to a chat (without actually sending it to the chat)</td>
</tr>
<tr>
<td><a href="/method/messages.getExtendedMedia">messages.getExtendedMedia</a></td>
<td>Get information about extended media</td>
</tr>
<tr>
<td><a href="/method/messages.getDocumentByHash">messages.getDocumentByHash</a></td>
<td>Get a document by its SHA256 hash, mainly used for gifs</td>
</tr>
@ -1565,6 +1577,10 @@
<td><a href="/method/account.uploadWallPaper">account.uploadWallPaper</a></td>
<td>Create and upload a new <a href="/api/wallpapers">wallpaper</a></td>
</tr>
<tr>
<td><a href="/method/messages.setChatWallPaper">messages.setChatWallPaper</a></td>
<td>Set a custom <a href="/api/wallpapers">wallpaper »</a> in a specific private chat with another user.</td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#working-with-web-app-bots-" id="working-with-web-app-bots-" name="working-with-web-app-bots-"><i class="anchor-icon"></i></a>Working with <a href="/bots/webapps">web app bots »</a></h3>
@ -1939,6 +1955,50 @@
<td><a href="/method/folders.editPeerFolders">folders.editPeerFolders</a></td>
<td>Edit peers in <a href="/api/folders#peer-folders">peer folder</a></td>
</tr>
<tr>
<td><a href="/method/chatlists.exportChatlistInvite">chatlists.exportChatlistInvite</a></td>
<td>Export a <a href="/api/folders">folder »</a>, creating a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.deleteExportedInvite">chatlists.deleteExportedInvite</a></td>
<td>Delete a previously created <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.editExportedInvite">chatlists.editExportedInvite</a></td>
<td>Edit a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getExportedInvites">chatlists.getExportedInvites</a></td>
<td>List all <a href="/api/links#chat-folder-links">chat folder deep links »</a> associated to a folder</td>
</tr>
<tr>
<td><a href="/method/chatlists.checkChatlistInvite">chatlists.checkChatlistInvite</a></td>
<td>Obtain information about a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.joinChatlistInvite">chatlists.joinChatlistInvite</a></td>
<td>Import a <a href="/api/links#chat-folder-links">chat folder deep link »</a>, joining some or all the chats in the folder.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getChatlistUpdates">chatlists.getChatlistUpdates</a></td>
<td>Fetch new chats associated with an imported <a href="/api/links#chat-folder-links">chat folder deep link »</a>. Must be invoked at most every <code>chatlist_update_period</code> seconds (as per the related <a href="/api/config#chatlist-update-period">client configuration parameter »</a>).</td>
</tr>
<tr>
<td><a href="/method/chatlists.joinChatlistUpdates">chatlists.joinChatlistUpdates</a></td>
<td>Join channels and supergroups recently added to a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.hideChatlistUpdates">chatlists.hideChatlistUpdates</a></td>
<td>Dismiss new pending peers recently added to a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getLeaveChatlistSuggestions">chatlists.getLeaveChatlistSuggestions</a></td>
<td>Returns identifiers of pinned or always included chats from a chat folder imported using a <a href="/api/links#chat-folder-links">chat folder deep link »</a>, which are suggested to be left when the chat folder is deleted.</td>
</tr>
<tr>
<td><a href="/method/chatlists.leaveChatlist">chatlists.leaveChatlist</a></td>
<td>Delete a folder imported using a <a href="/api/links#chat-folder-links">chat folder deep link »</a></td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#working-with-games" id="working-with-games" name="working-with-games"><i class="anchor-icon"></i></a>Working with games</h3>
@ -2769,77 +2829,6 @@
<td>Resolve a @username to get peer info</td>
</tr>
</tbody>
</table>
<h3><a class="anchor" href="#other" id="other" name="other"><i class="anchor-icon"></i></a>Other</h3>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="/method/messages.getExtendedMedia">messages.getExtendedMedia</a></td>
<td>Get information about extended media</td>
</tr>
<tr>
<td><a href="/method/auth.importWebTokenAuthorization">auth.importWebTokenAuthorization</a></td>
<td>Login by importing an authorization token</td>
</tr>
<tr>
<td><a href="/method/auth.resetLoginEmail">auth.resetLoginEmail</a></td>
<td>Reset the <a href="https://core.telegram.org/api/auth#email-verification">login email »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.exportChatlistInvite">chatlists.exportChatlistInvite</a></td>
<td>Export a <a href="/api/folders">folder »</a>, creating a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.deleteExportedInvite">chatlists.deleteExportedInvite</a></td>
<td>Delete a previously created <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.editExportedInvite">chatlists.editExportedInvite</a></td>
<td>Edit a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getExportedInvites">chatlists.getExportedInvites</a></td>
<td>List all <a href="/api/links#chat-folder-links">chat folder deep links »</a> associated to a folder</td>
</tr>
<tr>
<td><a href="/method/chatlists.checkChatlistInvite">chatlists.checkChatlistInvite</a></td>
<td>Obtain information about a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.joinChatlistInvite">chatlists.joinChatlistInvite</a></td>
<td>Import a <a href="/api/links#chat-folder-links">chat folder deep link »</a>, joining some or all the chats in the folder.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getChatlistUpdates">chatlists.getChatlistUpdates</a></td>
<td>Fetch new chats associated with an imported <a href="/api/links#chat-folder-links">chat folder deep link »</a>. Must be invoked at most every <code>chatlist_update_period</code> seconds (as per the related <a href="/api/config#chatlist-update-period">client configuration parameter »</a>).</td>
</tr>
<tr>
<td><a href="/method/chatlists.joinChatlistUpdates">chatlists.joinChatlistUpdates</a></td>
<td>Join channels and supergroups recently added to a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.hideChatlistUpdates">chatlists.hideChatlistUpdates</a></td>
<td>Dismiss new pending peers recently added to a <a href="/api/links#chat-folder-links">chat folder deep link »</a>.</td>
</tr>
<tr>
<td><a href="/method/chatlists.getLeaveChatlistSuggestions">chatlists.getLeaveChatlistSuggestions</a></td>
<td> </td>
</tr>
<tr>
<td><a href="/method/chatlists.leaveChatlist">chatlists.leaveChatlist</a></td>
<td> </td>
</tr>
<tr>
<td><a href="/method/messages.setChatWallPaper">messages.setChatWallPaper</a></td>
<td>Set a custom <a href="/api/wallpapers">wallpaper »</a> in a specific private chat with another user.</td>
</tr>
</tbody>
</table></div>
</div>

View file

@ -550,7 +550,7 @@
</tr>
<tr>
<td><a href="/method/chatlists.leaveChatlist">chatlists.leaveChatlist</a></td>
<td> </td>
<td>Delete a folder imported using a <a href="/api/links#chat-folder-links">chat folder deep link »</a></td>
</tr>
<tr>
<td><a href="/method/messages.setChatWallPaper">messages.setChatWallPaper</a></td>