mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-01-16 22:53:12 +01:00
Update content of files
This commit is contained in:
parent
4c8aad2857
commit
5a354edb67
18 changed files with 44 additions and 24 deletions
|
@ -88,6 +88,8 @@ While <a href="/method/help.getConfig">help.getConfig</a> returns MTProto-specif
|
|||
<li><code>autologin_domains</code> - A list of Telegram domains that support automatic login with no user confirmation, <a href="/api/url-authorization#link-url-authorization">click here for more info on URL authorization »</a>. (array of strings)</li>
|
||||
<li><code>autologin_token</code> - Autologin token, <a href="/api/url-authorization#link-url-authorization">click here for more info on URL authorization »</a>. (string)</li>
|
||||
<li><code>round_video_encoding</code> - Contains a set of recommended codec parameters for round videos. </li>
|
||||
<li><code>chat_read_mark_size_threshold</code> - Per-user read receipts, fetchable using <a href="/method/messages.getMessageReadParticipants">messages.getMessageReadParticipants</a> will be available in groups with less than <code>chat_read_mark_size_threshold</code> participants. (int)</li>
|
||||
<li><code>chat_read_mark_expire_period</code> - To protect user privacy, read receipts are only stored for <code>chat_read_mark_expire_period</code> seconds after the message was sent. (int)</li>
|
||||
</ul>
|
||||
<p>Example value: </p>
|
||||
<pre><code class="language-json">{
|
||||
|
@ -219,7 +221,9 @@ While <a href="/method/help.getConfig">help.getConfig</a> returns MTProto-specif
|
|||
"video_bitrate": 1000,
|
||||
"audio_bitrate": 64,
|
||||
"max_size": 12582912
|
||||
}
|
||||
},
|
||||
"chat_read_mark_size_threshold": 50,
|
||||
"chat_read_mark_expire_period": 604800
|
||||
}</code></pre>
|
||||
<h3><a class="anchor" href="#suggestions" id="suggestions" name="suggestions"><i class="anchor-icon"></i></a>Suggestions</h3>
|
||||
<p>The API can return a set of useful suggestions for users of graphical clients. </p>
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>PRIVACY_TOO_LONG</td>
|
||||
<td> </td>
|
||||
<td>Too many privacy rules were specified, the current limit is 1000.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>PASSWORD_RECOVERY_NA</td>
|
||||
<td> </td>
|
||||
<td>No email was set, can't recover password via email.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>MEGAGROUP_PREHISTORY_HIDDEN</td>
|
||||
<td> </td>
|
||||
<td>Group with hidden history for new members can't be set as discussion groups.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
<tr>
|
||||
<td>406</td>
|
||||
<td>STICKERSET_OWNER_ANONYMOUS</td>
|
||||
<td> </td>
|
||||
<td>Provided stickerset can't be installed as group stickerset to prevent admin deanonymisation.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -126,6 +126,11 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
<td>EXPIRE_DATE_INVALID</td>
|
||||
<td>The specified expiration date is invalid.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
<td>PEER_ID_INVALID</td>
|
||||
<td>The provided peer id is invalid.</td>
|
||||
</tr>
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
<meta charset="utf-8">
|
||||
<title>messages.getMessageReadParticipants</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta property="description" content="Get which users read a specific message">
|
||||
<meta property="description" content="Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».">
|
||||
<meta property="og:title" content="messages.getMessageReadParticipants">
|
||||
<meta property="og:image" content="">
|
||||
<meta property="og:description" content="Get which users read a specific message">
|
||||
<meta property="og:description" content="Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».">
|
||||
<link rel="shortcut icon" href="/favicon.ico?4" type="image/x-icon" />
|
||||
|
||||
<link href="/css/bootstrap.min.css?3" rel="stylesheet">
|
||||
|
@ -39,7 +39,7 @@
|
|||
<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/messages.getMessageReadParticipants" >messages.getMessageReadParticipants</a></li></ul></div>
|
||||
<h1 id="dev_page_title">messages.getMessageReadParticipants</h1>
|
||||
|
||||
<div id="dev_page_content"><p>Get which users read a specific message</p>
|
||||
<div id="dev_page_content"><p>Get which users read a specific message: only available for groups and supergroups with less than <code>chat_read_mark_size_threshold</code> members, read receipts will be stored for <code>chat_read_mark_expire_period</code> seconds after the message was sent, see <a href="/api/config#client-configuration">client configuration for more info »</a>.</p>
|
||||
<p><div class="clearfix">
|
||||
<ul class="dev_layer_select slightly-pull-right nav nav-pills">
|
||||
<li class="dropdown">
|
||||
|
@ -77,7 +77,10 @@
|
|||
</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><<a href="/type/long">long</a>></p></div>
|
||||
<p><a href="/type/Vector%20t">Vector</a><<a href="/type/long">long</a>></p>
|
||||
<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="#client-configuration" id="client-configuration" name="client-configuration"><i class="anchor-icon"></i></a><a href="/api/config">Client configuration</a></h4>
|
||||
<p>The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.</p></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -104,6 +104,11 @@
|
|||
<td>IMPORT_FORMAT_UNRECOGNIZED</td>
|
||||
<td>The specified chat export file was exported from an unsupported chat app.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>406</td>
|
||||
<td>PREVIOUS_CHAT_IMPORT_ACTIVE_WAIT_5MIN</td>
|
||||
<td>Import for this chat is already in progress, wait 5 minutes before starting a new one.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h3><a class="anchor" href="#related-pages" id="related-pages" name="related-pages"><i class="anchor-icon"></i></a>Related pages</h3>
|
||||
|
|
|
@ -223,7 +223,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>CURRENCY_TOTAL_AMOUNT_INVALID</td>
|
||||
<td> </td>
|
||||
<td>The total amount of all prices is invalid.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
@ -258,7 +258,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>GAME_BOT_INVALID</td>
|
||||
<td> </td>
|
||||
<td>Bots can't send another bot's game.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
|
|
@ -283,7 +283,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>SCHEDULE_STATUS_PRIVATE</td>
|
||||
<td> </td>
|
||||
<td>Can't schedule until user is online, if the user's last seen timestamp is hidden by their privacy settings.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>BOT_ONESIDE_NOT_AVAIL</td>
|
||||
<td> </td>
|
||||
<td>Bots can't pin messages in PM just for themselves.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
<tr>
|
||||
<td>403</td>
|
||||
<td>GROUPCALL_FORBIDDEN</td>
|
||||
<td> </td>
|
||||
<td>The group call has already ended.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>GROUPCALL_SSRC_DUPLICATE_MUCH</td>
|
||||
<td> </td>
|
||||
<td>The app needs to retry joining the group call with a new SSRC value.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
|
|
|
@ -98,10 +98,13 @@
|
|||
<tr>
|
||||
<td>403</td>
|
||||
<td>PARTICIPANT_JOIN_MISSING</td>
|
||||
<td> </td>
|
||||
<td>Trying to enable a presentation, when the user hasn't joined the Video Chat with <a href="/method/phone.joinGroupCall">phone.joinGroupCall</a>.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</table>
|
||||
<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="#phonejoingroupcall" id="phonejoingroupcall" name="phonejoingroupcall"><i class="anchor-icon"></i></a><a href="/method/phone.joinGroupCall">phone.joinGroupCall</a></h4>
|
||||
<p>Join a group call</p></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_TGS_NOTGS</td>
|
||||
<td> </td>
|
||||
<td>Invalid TGS sticker provided.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -187,17 +187,17 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_TGS_NOTGS</td>
|
||||
<td> </td>
|
||||
<td>Invalid TGS sticker provided.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_THUMB_PNG_NOPNG</td>
|
||||
<td> </td>
|
||||
<td>Incorrect stickerset thumb file provided, PNG / WEBP expected.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_THUMB_TGS_NOTGS</td>
|
||||
<td> </td>
|
||||
<td>Incorrect stickerset TGS thumb file provided.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
|
|
|
@ -97,12 +97,12 @@
|
|||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_THUMB_PNG_NOPNG</td>
|
||||
<td> </td>
|
||||
<td>Incorrect stickerset thumb file provided, PNG / WEBP expected.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>400</td>
|
||||
<td>STICKER_THUMB_TGS_NOTGS</td>
|
||||
<td> </td>
|
||||
<td>Incorrect stickerset TGS thumb file provided.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -648,7 +648,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td><a href="/method/messages.getMessageReadParticipants">messages.getMessageReadParticipants</a></td>
|
||||
<td>Get which users read a specific message</td>
|
||||
<td>Get which users read a specific message: only available for groups and supergroups with less than <code>chat_read_mark_size_threshold</code> members, read receipts will be stored for <code>chat_read_mark_expire_period</code> seconds after the message was sent, see <a href="/api/config#client-configuration">client configuration for more info »</a>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="/method/messages.addChatUser">messages.addChatUser</a></td>
|
||||
|
|
Loading…
Reference in a new issue