diff --git a/data/web/corefork.telegram.org/api/boost.html b/data/web/corefork.telegram.org/api/boost.html index 9bf421f836..e6a1068984 100644 --- a/data/web/corefork.telegram.org/api/boost.html +++ b/data/web/corefork.telegram.org/api/boost.html @@ -2,12 +2,12 @@
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
-Channels level up as they gain more boosts – and for each level, they gain additional features.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
+Channels and supergroups level up as they gain more boosts – and for each level, they gain additional features.
Additionally, channel admins may gain even more boosts by starting giveaways ».
The maximum possible boost level for a channel is specified in the boosts_channel_level_max config key.
Schema:
@@ -73,17 +73,17 @@ premium.getUserBoosts#39854d1f peer:InputPeer user_id:InputUser = premium.BoostsList; premium.getBoostsList#60f67660 flags:# gifts:flags.0?true peer:InputPeer offset:string limit:int = premium.BoostsList; -Each user has a certain number of boost slots that can be assigned to channels: the precise number depends on whether they bought or were gifted a Premium subscription, and can be fetched using premium.getMyBoosts, along with info about the channels currently occupying each slot, if any.
+Each user has a certain number of boost slots that can be assigned to channels and supergroups: the precise number depends on whether they bought or were gifted a Premium subscription, and can be fetched using premium.getMyBoosts, along with info about the channels and supergroups currently occupying each slot, if any.
Gifting a Telegram Premium subscription to another user will create boosts_per_sent_gift new boost slots for us, and one boost slot for the destination user.
-Use premium.applyBoost to assign some of your boost slots to a channel.
+Use premium.applyBoost to assign some of your boost slots to a channel or supergroup.
A PREMIUM_ACCOUNT_REQUIRED
error will be returned if the current account does not have a Telegram Premium subscription.
-A BOOST_NOT_MODIFIED
RPC error will be returned when calling any of the two methods if the user is already boosting the specified channel with the same slots.
After assigning a slot a channel, the user may not change the boosted channel for that slot for a certain cooldown period, specified in the myBoost.cooldown_until_date
field: if the cooldown period isn't over yet, the method will return a 420 FLOOD_WAIT_X
error, indicating the number of seconds left before a different channel can be boosted.
Users may also invoke premium.getBoostsStatus, to get the current boost status of a channel as a premium.boostsStatus constructor, check out the constructor page for more info.
-Channel administrators may invoke premium.getBoostsList to fetch the list of users currently boosting the channel, and premium.getUserBoosts to get info about the boosts sent to a channel by a specific user.
+ABOOST_NOT_MODIFIED
RPC error will be returned when calling any of the two methods if the user is already boosting the specified channel or supergroup with the same slots.
+After assigning a slot a channel or supergroup, the user may not change the boosted channel or supergroup for that slot for a certain cooldown period, specified in the myBoost.cooldown_until_date
field: if the cooldown period isn't over yet, the method will return a 420 FLOOD_WAIT_X
error, indicating the number of seconds left before a different channel or supergroup can be boosted.
Users may also invoke premium.getBoostsStatus, to get the current boost status of a channel or supergroup as a premium.boostsStatus constructor, check out the constructor page for more info.
+Channel or supergroup administrators may invoke premium.getBoostsList to fetch the list of users currently boosting the channel or supergroup, and premium.getUserBoosts to get info about the boosts sent to a channel or supergroup by a specific user.
With each boost, channels can post 1 additional story per day to their subscribers' story feeds.
+With each boost, channels and supergroups can post 1 additional story per day to their subscribers' story feeds.
inputPeerChannel#27bcbbfc channel_id:long access_hash:long = InputPeer;
messages.chats#64ff9fd5 chats:Vector<Chat> = messages.Chats;
@@ -92,7 +92,7 @@ A BOOST_NOT_MODIFIED
RPC error will be returned when calling any of
stories.getChatsToSend#a56a8b60 = messages.Chats;
Everything works exactly the same as when posting stories as a user, with the only difference that clients should pass the appropriate inputPeerChannel instead of inputPeerSelf to stories.canSendStory, stories.sendStory and all the other story methods, see the main documentation » for more info.
-Use stories.getChatsToSend to obtain a list of channels where the user can post stories; stories.canSendStory must still be used before uploading a story to make sure no other limit was reached, as described in the main documentation ».
+Use stories.getChatsToSend to obtain a list of channels or supergroups where the user can post stories; stories.canSendStory must still be used before uploading a story to make sure no other limit was reached, as described in the main documentation ».
After reaching at least the boost level specified in the channel_min_level
field of the help.peerColorOption constructor for the chosen palette, channels gain the ability to change their message accent palette ».
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Apply a Telegram Premium giftcode »
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram users and channels can change the accent color and background pattern of their profile page and their messages!
Telegram allows users to set an emoticon or a custom emoji as status, to show next to their name in chats and profiles.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/globalPrivacySettings.html b/data/web/corefork.telegram.org/constructor/globalPrivacySettings.html index f5fb710417..44acc0736b 100644 --- a/data/web/corefork.telegram.org/constructor/globalPrivacySettings.html +++ b/data/web/corefork.telegram.org/constructor/globalPrivacySettings.html @@ -114,7 +114,7 @@If a user enables their new_noncontact_peers_require_premium global privacy setting, represented in userFull.contact_require_premium
, only users that have a premium account, are in our contact list, or already have a private chat with them can write to them in private.
To easily check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the userFull or history of all users while displaying the chat list in the sharing UI) this method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
This list may then be used, for example, to display a lock near the avatar of each user that we cannot write to, with an appropriate tooltip to purchase a Premium subscription.
-Note that this method should only be invoked if we don't have a Premium subscription, for users whose full info (userFull + message history information + contact information) is not cached yet, as the same info can be computed locally if all the mentioned information is available, and updated automatically using the usual updates.
+Note that this method should only be invoked if we don't have a Premium subscription, only for users whose full info (userFull + message history information) is not cached yet, as the same info can be computed locally if all the mentioned information is available, and updated automatically using the usual updates.
Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
diff --git a/data/web/corefork.telegram.org/constructor/help.peerColorOption.html b/data/web/corefork.telegram.org/constructor/help.peerColorOption.html index 664ba646fd..8a684623af 100644 --- a/data/web/corefork.telegram.org/constructor/help.peerColorOption.html +++ b/data/web/corefork.telegram.org/constructor/help.peerColorOption.html @@ -106,8 +106,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram users and channels can change the accent color and background pattern of their profile page and their messages!
diff --git a/data/web/corefork.telegram.org/constructor/inputInvoicePremiumGiftCode.html b/data/web/corefork.telegram.org/constructor/inputInvoicePremiumGiftCode.html index 29898c6725..4b639d655d 100644 --- a/data/web/corefork.telegram.org/constructor/inputInvoicePremiumGiftCode.html +++ b/data/web/corefork.telegram.org/constructor/inputInvoicePremiumGiftCode.html @@ -84,13 +84,13 @@Used to pay for a giveaway, see here » for more info.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Used to gift Telegram Premium subscriptions only to some specific subscribers of a channel or to some of our contacts, see here » for more info on giveaways and gifts.
Obtain a list of Telegram Premium giveaway/gift code » options.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/inputStorePaymentPremiumGiftCode.html b/data/web/corefork.telegram.org/constructor/inputStorePaymentPremiumGiftCode.html index 6f88169eb6..843ddfb6f0 100644 --- a/data/web/corefork.telegram.org/constructor/inputStorePaymentPremiumGiftCode.html +++ b/data/web/corefork.telegram.org/constructor/inputStorePaymentPremiumGiftCode.html @@ -98,10 +98,10 @@Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
A giveaway with public winners has finished, this constructor contains info about the winners.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.
boosts_applied
, to ensure the value is correct even for messages sent by the current user before a supergroup was boosted (or after a boost has expired or the number of boosts has changed); do not update this value for incoming messages from other users, even if their boosts have changed.Telegram allows scheduling messages
Telegram allows pinning multiple messages on top of a specific chat.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
+Full info about a channel, supergroup or gigagroup.
The Saved Messages chat allows users to bookmark messages and media: it's a personal cloud storage for any messages or media you may want to send or forward there.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/messageActionGiveawayResults.html b/data/web/corefork.telegram.org/constructor/messageActionGiveawayResults.html index 3983149d80..20a9d1ef57 100644 --- a/data/web/corefork.telegram.org/constructor/messageActionGiveawayResults.html +++ b/data/web/corefork.telegram.org/constructor/messageActionGiveawayResults.html @@ -82,7 +82,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/messageMediaGiveaway.html b/data/web/corefork.telegram.org/constructor/messageMediaGiveaway.html index a0483d9c32..ea93840efd 100644 --- a/data/web/corefork.telegram.org/constructor/messageMediaGiveaway.html +++ b/data/web/corefork.telegram.org/constructor/messageMediaGiveaway.html @@ -121,7 +121,7 @@Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/messageMediaGiveawayResults.html b/data/web/corefork.telegram.org/constructor/messageMediaGiveawayResults.html index 52b190baac..81963ea5ac 100644 --- a/data/web/corefork.telegram.org/constructor/messageMediaGiveawayResults.html +++ b/data/web/corefork.telegram.org/constructor/messageMediaGiveawayResults.html @@ -131,12 +131,12 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/myBoost.html b/data/web/corefork.telegram.org/constructor/myBoost.html index 3b5059523d..b29b8e1124 100644 --- a/data/web/corefork.telegram.org/constructor/myBoost.html +++ b/data/web/corefork.telegram.org/constructor/myBoost.html @@ -101,8 +101,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/payments.checkedGiftCode.html b/data/web/corefork.telegram.org/constructor/payments.checkedGiftCode.html index f7679c7e9f..cc700d4d24 100644 --- a/data/web/corefork.telegram.org/constructor/payments.checkedGiftCode.html +++ b/data/web/corefork.telegram.org/constructor/payments.checkedGiftCode.html @@ -122,7 +122,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Contains info about a giveaway, see here » for more info.
diff --git a/data/web/corefork.telegram.org/constructor/payments.giveawayInfoResults.html b/data/web/corefork.telegram.org/constructor/payments.giveawayInfoResults.html index 5b57dc44d5..f180bac0e0 100644 --- a/data/web/corefork.telegram.org/constructor/payments.giveawayInfoResults.html +++ b/data/web/corefork.telegram.org/constructor/payments.giveawayInfoResults.html @@ -114,7 +114,7 @@Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/premium.boostsList.html b/data/web/corefork.telegram.org/constructor/premium.boostsList.html index 1fedf1d528..f9318ed9f5 100644 --- a/data/web/corefork.telegram.org/constructor/premium.boostsList.html +++ b/data/web/corefork.telegram.org/constructor/premium.boostsList.html @@ -96,8 +96,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
How to fetch results from large lists of objects.
diff --git a/data/web/corefork.telegram.org/constructor/premium.boostsStatus.html b/data/web/corefork.telegram.org/constructor/premium.boostsStatus.html index c747aaaaad..27265aa2a6 100644 --- a/data/web/corefork.telegram.org/constructor/premium.boostsStatus.html +++ b/data/web/corefork.telegram.org/constructor/premium.boostsStatus.html @@ -127,11 +127,11 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/premium.myBoosts.html b/data/web/corefork.telegram.org/constructor/premium.myBoosts.html index 78a65673f1..021e29cca4 100644 --- a/data/web/corefork.telegram.org/constructor/premium.myBoosts.html +++ b/data/web/corefork.telegram.org/constructor/premium.myBoosts.html @@ -86,8 +86,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/premiumGiftCodeOption.html b/data/web/corefork.telegram.org/constructor/premiumGiftCodeOption.html index e2fc14f104..2a33044e32 100644 --- a/data/web/corefork.telegram.org/constructor/premiumGiftCodeOption.html +++ b/data/web/corefork.telegram.org/constructor/premiumGiftCodeOption.html @@ -110,7 +110,7 @@Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/prepaidGiveaway.html b/data/web/corefork.telegram.org/constructor/prepaidGiveaway.html index ac17635935..d7eca20d7e 100644 --- a/data/web/corefork.telegram.org/constructor/prepaidGiveaway.html +++ b/data/web/corefork.telegram.org/constructor/prepaidGiveaway.html @@ -94,7 +94,7 @@Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/constructor/updateBotChatBoost.html b/data/web/corefork.telegram.org/constructor/updateBotChatBoost.html index 7af93f2a74..a8c3184dec 100644 --- a/data/web/corefork.telegram.org/constructor/updateBotChatBoost.html +++ b/data/web/corefork.telegram.org/constructor/updateBotChatBoost.html @@ -88,8 +88,8 @@How to subscribe to updates and handle them properly.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/constructor/userFull.html b/data/web/corefork.telegram.org/constructor/userFull.html index f132238953..6b8c5d838f 100644 --- a/data/web/corefork.telegram.org/constructor/userFull.html +++ b/data/web/corefork.telegram.org/constructor/userFull.html @@ -307,7 +307,7 @@If a user enables their new_noncontact_peers_require_premium global privacy setting, represented in userFull.contact_require_premium
, only users that have a premium account, are in our contact list, or already have a private chat with them can write to them in private.
To easily check whether we can write to a user with this flag enabled, if we haven't yet cached all the required information (for example we don't have the userFull or history of all users while displaying the chat list in the sharing UI) this method may be invoked, passing the list of users currently visible in the UI, returning a list of booleans that directly specify whether we can or cannot write to each user.
This list may then be used, for example, to display a lock near the avatar of each user that we cannot write to, with an appropriate tooltip to purchase a Premium subscription.
-Note that this method should only be invoked if we don't have a Premium subscription, for users whose full info (userFull + message history information + contact information) is not cached yet, as the same info can be computed locally if all the mentioned information is available, and updated automatically using the usual updates.
+Note that this method should only be invoked if we don't have a Premium subscription, only for users whose full info (userFull + message history information) is not cached yet, as the same info can be computed locally if all the mentioned information is available, and updated automatically using the usual updates.
Set global privacy settings
Telegram users and channels can change the accent color and background pattern of their profile page and their messages!
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/method/payments.applyGiftCode.html b/data/web/corefork.telegram.org/method/payments.applyGiftCode.html index 94ba7f606e..97b205d820 100644 --- a/data/web/corefork.telegram.org/method/payments.applyGiftCode.html +++ b/data/web/corefork.telegram.org/method/payments.applyGiftCode.html @@ -112,7 +112,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/method/payments.checkGiftCode.html b/data/web/corefork.telegram.org/method/payments.checkGiftCode.html index e3578b1a6f..bbc54de748 100644 --- a/data/web/corefork.telegram.org/method/payments.checkGiftCode.html +++ b/data/web/corefork.telegram.org/method/payments.checkGiftCode.html @@ -101,7 +101,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/method/payments.getGiveawayInfo.html b/data/web/corefork.telegram.org/method/payments.getGiveawayInfo.html index 6fcf3c3a17..f78c869a7f 100644 --- a/data/web/corefork.telegram.org/method/payments.getGiveawayInfo.html +++ b/data/web/corefork.telegram.org/method/payments.getGiveawayInfo.html @@ -104,7 +104,7 @@A giveaway was started.
Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/method/payments.getPremiumGiftCodeOptions.html b/data/web/corefork.telegram.org/method/payments.getPremiumGiftCodeOptions.html index 3fef5a3696..4d38361c9c 100644 --- a/data/web/corefork.telegram.org/method/payments.getPremiumGiftCodeOptions.html +++ b/data/web/corefork.telegram.org/method/payments.getPremiumGiftCodeOptions.html @@ -83,7 +83,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/method/payments.launchPrepaidGiveaway.html b/data/web/corefork.telegram.org/method/payments.launchPrepaidGiveaway.html index 566b8b7fc5..907db2e042 100644 --- a/data/web/corefork.telegram.org/method/payments.launchPrepaidGiveaway.html +++ b/data/web/corefork.telegram.org/method/payments.launchPrepaidGiveaway.html @@ -112,7 +112,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/method/premium.applyBoost.html b/data/web/corefork.telegram.org/method/premium.applyBoost.html index 13436b855e..1b7cbf9874 100644 --- a/data/web/corefork.telegram.org/method/premium.applyBoost.html +++ b/data/web/corefork.telegram.org/method/premium.applyBoost.html @@ -115,8 +115,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/method/premium.getBoostsList.html b/data/web/corefork.telegram.org/method/premium.getBoostsList.html index 3d527209d6..ffdbd6eca6 100644 --- a/data/web/corefork.telegram.org/method/premium.getBoostsList.html +++ b/data/web/corefork.telegram.org/method/premium.getBoostsList.html @@ -121,7 +121,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
List of boosts that were applied to a peer by multiple users.
Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/method/premium.getMyBoosts.html b/data/web/corefork.telegram.org/method/premium.getMyBoosts.html index add6ee6b99..27ce3d931a 100644 --- a/data/web/corefork.telegram.org/method/premium.getMyBoosts.html +++ b/data/web/corefork.telegram.org/method/premium.getMyBoosts.html @@ -63,8 +63,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/method/stories.canSendStory.html b/data/web/corefork.telegram.org/method/stories.canSendStory.html index 7f30530b2f..ed6e4fefff 100644 --- a/data/web/corefork.telegram.org/method/stories.canSendStory.html +++ b/data/web/corefork.telegram.org/method/stories.canSendStory.html @@ -126,8 +126,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.
The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.
Telegram allows users to specify granular privacy settings, choosing which users can or can't interact with them in certain ways.
-Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
Telegram Premium is an optional subscription service that unlocks additional exclusive client-side and API-side features, while helping support the development of the app.
diff --git a/data/web/corefork.telegram.org/methods.html b/data/web/corefork.telegram.org/methods.html index 7cfced5286..5794deb5c0 100644 --- a/data/web/corefork.telegram.org/methods.html +++ b/data/web/corefork.telegram.org/methods.html @@ -3178,7 +3178,7 @@ Look for updates of telegram's terms of service…">contact_require_premium
, only users that have a premium account, are in our contact list, or already have a private chat with them can write to them in private.contact_require_premium
, only users that have a premium account, are in our contact list, or already have a private chat with them can write to them in private.Sent payload (excluding transport headers/trailers):
-0000 | 00 00 00 00 00 00 00 00 14 E9 05 00 50 BA 79 66
-0010 | 14 00 00 00 F1 8E 7E BE 89 66 1B 73 7A 31 36 75
-0020 | 4D C8 B0 EE C3 20 B4 5A
+0000 | 00 00 00 00 00 00 00 00 3C B9 0E 00 73 22 7B 66
+0010 | 14 00 00 00 F1 8E 7E BE C3 C8 F6 BE 0E 4F 8A 08
+0020 | AE F2 D4 4C 20 7A CE 47
Payload (de)serialization:
req_pq_multi#be7e8ef1 nonce:int128 = ResPQ;
message_id | 8, 8 | -14E9050050BA7966 |
+3CB90E0073227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Random number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message_id | 8, 8 | -01D0716050BA7966 |
+01E0CC0374227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
server_nonce | 40, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Server-generated random number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pq | 56, 12 | -081C7D70DB91B6E5BD000000 TL byte deserialization => bigendian conversion to decimal => 2052921093495645629 |
+08221F493AA224373F000000 TL byte deserialization => bigendian conversion to decimal => 2458764437744793407 |
Single-byte prefix denoting length, an 8-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pq | 4, 12 | -081C7D70DB91B6E5BD000000 TL byte deserialization => bigendian conversion to decimal => 2052921093495645629 |
+08221F493AA224373F000000 TL byte deserialization => bigendian conversion to decimal => 2458764437744793407 |
Single-byte prefix denoting length, 8-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
p | 16, 8 | -0450BF5B6B000000 TL byte deserialization => bigendian conversion to decimal => 1354718059 |
+04525E93F5000000 TL byte deserialization => bigendian conversion to decimal => 1381929973 |
First prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
q | 24, 8 | -045A52F577000000 TL byte deserialization => bigendian conversion to decimal => 1515386231 |
+046A0CD1E3000000 TL byte deserialization => bigendian conversion to decimal => 1779225059 |
Second prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nonce | 32, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
server_nonce | 48, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
new_nonce | 64, 32 | -0AF0B6F64E8FE8F2D60FA2BBB5E8F2FE 14F5D191D7FA92F2D4B23E28E0017AB8 |
+FE6AAC3F306D99D58E3076FD35776525 5418F8F9245CEB17EC81B167250F1DF9 |
Client-generated random number | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message_id | 8, 8 | -34E40B0050BA7966 |
+483B010074227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) | ||||||||||||||||||||||||||||||||||||||||
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||
server_nonce | 40, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 | ||||||||||||||||||||||||||||||||||||||||
p | 56, 8 | -0450BF5B6B000000 TL byte deserialization => bigendian conversion to decimal => 1354718059 |
+04525E93F5000000 TL byte deserialization => bigendian conversion to decimal => 1381929973 |
First prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||
q | 64, 8 | -045A52F577000000 TL byte deserialization => bigendian conversion to decimal => 1515386231 |
+046A0CD1E3000000 TL byte deserialization => bigendian conversion to decimal => 1779225059 |
Second prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding | ||||||||||||||||||||||||||||||||||||||||
encrypted_data | 80, 260 | -FE0001004F980F1D38DBF00E09661EB0 20E3D27B7E45FBEDB51AC1EBC25E7E80 5E1445A8443773CEC2D18ECE2F36A2F5 27475A0B0F19F6899BA1B63E33AE4BF0 39465C9B04965954EB2B0C6D42F36A9D 7D134BB0A3B2E82E516A6585E3FD6BCE 0931A2214ECFDB88B92049FE2CC3A935 263BAA426A0F49A8FB178ACD76E7733F 1F7C8FE599461D287CE9E90D6972D1B1 012ED3ED0BA5D8656D13293065198288 2B1E81D26496F716C388FED4E5459C8D FBC68396C66E21D472B5DF6E0173222D 81EBBF19FF5B3979F1B2C24061FBADF9 0EAE632437F17EC8526E45AFEE11A9D9 FCEABDDFCCA928F36D75F25831E60E2A 887C08530C9F206FB9FC72FF6D3D76FC 8E18C60E |
+FE000100B9414995450EB67A3067A17A 8662ABCF4E40BFEFD972EDA822FF2DE3 6B9B04AFACA0FB5D1F95C2A55BAB4824 0811689C99671600428A754734A552FF 7D015004D677DFF8855EA0FBBCB13FB7 E98ADE47BEC0FF81081913AEA521ADFD 6FD2FA1DF394D3E4E377A77CCC4F75ED A14C257BD56DC0978893BA5573350A3F A2996436B8DDBCC210D4BB212C73E43D 084C13B85AACB786A2C2A2252494760A F29504CC7BEF2E21244BA7D8D9985082 94E92F98E3925E4C77E53989DFDA7B97 DE1D4A3266000BD004766BC158946A20 7B3A381195764DEC4D102AA385E08BD2 25A6F4EF2B48F513AD8115F2AB634332 1962247A4B85C37622479BF6140D3AB9 E5872FEC |
Value generated above |
message_id | 8, 8 | -01C8732851BA7966 |
+01C01AB774227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) | ||||||||||||||||||||||||||||||||||||||||
message_length | 16, 4 | -D8020000 (728 in decimal) |
+AC020000 (684 in decimal) |
Message body length | ||||||||||||||||||||||||||||||||||||||||
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||
server_nonce | 40, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 | ||||||||||||||||||||||||||||||||||||||||
encrypted_answer | 56, 596 | -FE50020078008C2C3C3A1487B75524DA 42CB210AD13566776A351E40BB80CF1D E8B7E3F5E4B9814081528D9C139B07BF 948DE1A382625AED30F22373C8436625 EE0D196F434BBCDD7A0CC57F3126B60E DC5DE474D8435CEDA352C5CCD00607FA 015903E22D863346D61719E439AD8DE1 58C3E5D277E6A9D62F15508F5506CAA3 03A10BE03527DBA311B78C41FB15275B CE993F6716D5C40D1ADD5B433E9334EB 79D25659DE74C7EF81B92EF2E969D3AC 2FACA0C46BD3DE1208BA71A2659DCBAE 03A0A7635CC7AC322B75FCC70B318752 F330E02E5E442D8D10C138AB98A43D18 609DF40B35DACE0717C1D5A4EEA57D9C 1915ED873B51509991574FBCB17F7960 DE2B103D8BC17A796C1FC507D8F0B9E6 98C8F0C255709BD6F5C7795428D2FF2B 8A85ED310F18320032BE38825AC7C0F1 D9016B0D3E112CB01190283C08200E60 7E6BB675F2CD9DEFA6A473F344A98E12 DA1A7F14E1DF32F4BC7F21A65C64D1C2 34E4A5AE63FDE99EB4F4D477A95787AE 0B78490C3EA6EC6E96F0DBE7F327E193 1BB975613D5F9D6B6D8FCD14D3E185CE C2EFA4D340A9A595C26B545F59F3F73E AC32349740293985F9D1FE1F16CDC044 1A1BBFD851306EC6C72D82E346E64498 A8BB384CF2FE4508813FF899A93B50A8 CB86010BF32A71D90EE900320AEBD89B 85F88032FC1BCA09CE46B549A24534AB 7A71989A1BF235E6067B5C1114709667 F425A63957FD5D23B8BC6B25589D3E17 2984EC7D3538BC91C9D35CA01AD59197 8B903B9B1C62DECCF02B7A695DA6B8DB 7ACA3604A17391DC182A6032337A8A77 31BA164D091156359AD5CAAD1C1EB35E 6C546B26 |
+FE500200747CAF96BCA53E0E25CBA35C B279394DB6F585DA4339B700CE7031AE 5AB905F77A8FAE12C8C357A6AEC06890 A7E33545F965261A92038118CF6D6CF4 5CA7A5A7A2EA32126A2FF7C5F546BF19 612E38A7A13FDA0B8F394B8EE23481EC 511F3C4A35FC98A59A5FC2485547D170 4603B9442C7264122FE0ECDEF037BFE9 E1EE7790BEA1F23BAF9D2C9007AD8408 366256DC69A1A08880CE4AE7743DDBC0 4E6451E41D046E1C1941615956A05FDC 74BE59A623B4F85AF9CD07DE76362D73 59FAB54093826B20ACFDCB71F29D799D 2BC1C4392B45B0D3F9BFF40F8832A7A3 75FFD8C5C6ED99EFF041C6A8AB78AEC5 25BB66ADFBC252CE07539B2C2C2FE7AF 60FD6F77FC4B2E1E127D6DC0CA61664B 7BFB2F39915D36D4F6DB3483C8F4AE98 097906D72FA0AC728D78B3B02FF1335A AD5E493B954A69DAB3AFA395CD27EF4C 524651A51E550A9BB18F2E7E3B8DC2AA 389D4ACEE91A8DF93DBDB686D782EC84 1DF2233C06571494B6853C81522B3023 0549D1F633AFB3B4F190D7DAE8958F89 594F7FC6C0AE7DEC3C5771E324AE907D 0A36CDC40787D61A1340B923D9600D5A B700778E370D8B50084E87B2D7714024 B90DB97D2C0521D9228A26F682210A96 BE7E41CF833AC69D49FB41DF1744B6B7 06FD9B5BCF8B6B98EF8F3B9861AF79BF 2D3077C5373CE1B66F935ADA6624FCDF 51A3FE055916CF0CD319832891BA7BEE 1A184DABB48DEAC8DBCE26DC8DD02D4A 2F749B33CA394C930BDA52BCC619B649 AD5C78617CDD2DEB57138013552FD85A 2276E751E96828CDE3FE4139DBFA8302 BDA031A65BD5E17AEF5C0F98FA29F559 13BAAA1B |
See below |
nonce | 4, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||
server_nonce | 20, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 | ||||||||||||||||||||||||||||||||||||||||
g_a | 300, 260 | -FE0001004B9393CBF0FC5C756A7B9BC4 868E27C112ACE80FC11C35740D11D19D EDD7C9F139C9E14F3AD6AA4E6470B46A FF695C1CFC7488D929A91B812B514B4F 155A79E159A0928C38F4FFDB3DD16F02 F1A1CDFFA36F6A271D420EF6551EC8CD F352EEB6BB591429C33ACA97251D2ED3 55785C0DFA7A99690D597620DD1FA752 4871C7E83832E9D319C3090BD87573D3 AD8463BDA039B7673FA84D9259E2A1EF DAF6A502FBCEDA94E1999E56DCA6D991 24A90387F5FEF0065DC3E60E96446096 79F27F7126FB171B4EC0456744A6851D FF36CBC036A994A54664412B386AB5FD 67144A0EF3448C0A73346E943D65D1BB B9F2DDD6EBDD9926B6106F0AECC8645F 435D3F43 |
+FE0001005810B14927DC018378E3D618 92D117D7CD2B1033A9D78FB68861B8AC C93CE73A4B1E13C97C6E8EB772530F31 5F60D99A90CAEC61EE1FE8FE3AF215BF 8D3ADC5AD1DBAFD0E7362722D0D61371 388223D276DF3775AB6A8C0FD9E3C2C3 02C7CCC08B5330018090938C2BC596E2 0060F0E2D621F524FEB4C95B39D5F278 39E4522BC47CDF06A3BF5CB31DFEA7A6 CD9EC7C33D7F2C87FA40587D9E9331CA 17CAA6925805238F3E101EC9F3930E4F 9E9496A476874F02D3451AC80D442F47 0885D20746773F71689E6C3414CC2637 7B75991368DBD4E2A131F053C8B81A7B 7215AD1A08D180602D41FE8E7F6AA317 D57D3358917EC6F0E350212F87964F3E 76942023 |
g_a diffie-hellman parameter |
||||||||||||||||||||||||||||||||||||||||
server_time | 560, 4 | -51BA7966 (1719253585 in decimal) |
+74227B66 (1719345780 in decimal) |
Server time |
nonce | 4, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 | ||||||||||||||||||||||||||||||||||||||||
server_nonce | 20, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 | ||||||||||||||||||||||||||||||||||||||||
g_b | 36, 260 | -FE0001002B66EF0EA54F1D950C0AE2DD 63EED31AA21F82B5FB16ACF59DE34FC2 6B53B923FAA67B2FCBE5CB80F18C38CE 163ECA2CB8952A59F6A7F2F3E71B8C66 83A200F0E2936C1AEF59E932EA2C90EE B95051D17882BF814B8FEA7FFFB3AE99 3FCA9CC7684D2E9645AB246B5F62EF8C A2D6C98000663E48D47BF1BD2CEA15D3 DBA8C8183903CB0CAE1E7DCD59BE3485 4446267748F91D84BEDA82689B00831B 58ED63BBA326BA07F6873CEA5327001D 83FFB3DD0C095959EAC002C70715F088 B650F83CC1671295E51D4963EF41FC72 5F3FCE571E897B7E2C8B04125945985C 34F5046960CFA6B38C641EEA1E3C3747 ABB583B904D9EDD1BC8A92580C8BD7D6 FCC2225E |
+FE000100275A685782E5161214E26120 5ED27F15D103C9D93CDA91A6B3C99548 E7271D7E222D42C9941B051981666EC8 B7C4892F93EB0B41E176DE7082F6D062 B6F7DDEFF57087330E1845C223412426 8CE2E19401392493799680971014CFB3 7162506BD67E92E44C2B8196FFF5DE1A F3ABC01E1A54B02A50046784A5980EB8 3308D5713A5FB3A442CC10833D70C042 465A10958F96D1601EE7909DB4102FEC 8A1DEC82C280F4F13EDB8C89B6D2EBBD BE77614973ABBDE2AFA31E94B3A4E6FA 3A96E443779C4C317070DF24643A1248 509BB440EDE831BEC81CD165939BFCF1 DA2D704A3504B8C888E2569E7EB020F3 CA04FEF8DC5E4E0907FB495757B44DC9 08932406 |
Single-byte prefix denoting length, a 256-byte (2048-bit) string, and zero bytes of padding | ||||||||||||||||||||||||||||||||||||||||
message_id | 8, 8 | -B8100D0051BA7966 |
+44930D0074227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) |
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 |
server_nonce | 40, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 |
encrypted_data | 56, 340 | -FE500100E4FF52003387B3D3C84A357E B093C476F509BFCF55E73C65E1E050B2 F7E9DAD7271441A678527E6CBDE42567 7340054A00A97FDA4A270AF2F2ADCD6C 58A5A3A3CEDD72EE325A5858783D32F9 0F3D061B78BAB8306AF8C65161EBA209 3501CFF608E152ABB82B28B4AF717437 337B66BD55AE96F8CCE264A48DFC30DC 470615A6C0391BD29E8A7EC2BCE06A7F 0D67EF64DCC798BCA89DC549BDE4B0B3 8CD444BA2FE9332CBE77AC0264BBF35D 3CA98C0355C10167BCB811A63E4038BF DD02848D7AB35789E5A6AD0F2FECF3B9 4A36D0C2FAE6EF5542F3FD2B08DFFDA8 03912628E7CDE831CA61BEF1C2F6948D 1DD4741CAF19466222C975A034B7E2A2 83E5631B47B729983585C3322038115E 6B23E0D0967676A1DCB0006D038460BE AF8A903176A583AB626474EE31CAB38C 589F5FCF4171C2A81E5CDCA93C4F8518 AA681F852AB825AC1BED8D9F7C778E9A 5AEA167F |
+FE50010084EA0D2A191290694D445EF3 98907CDBACB4DD384C142D2B99C51530 96F4BC48728DDB6BA33078187E7A8CC8 10567D44AECBADA7C56075F8D978E9A8 BC92D238A7BEB91EB726E521F914A678 C5607C8EDF07FE3FA73B330773DFF8F1 FAB43951516B142A6231DFE2878B7E6C B9D09D413F65663592B5F0702AFBD139 13CEC21331FB97A802CA866561FB6673 B7505AFA6DCA65E0A928E133B1BBB891 0BB21B7CADEDF07A0CB390F5E3BA7FA3 F9E94739ED49C1B1187C7387FCDC24F8 F536DA0354C24AF5DDB94EF4264859AA 2115A8046CFF2AEB40B064E1EF403E16 A1090103A766B12C390C3C31540F46C2 A35BF9B4E6786AAA990FC875A95C875B 3C17DEC03168CA450B426E8BFFEDFE80 C15A70F872C962073C2A05B8E6E08365 12BE8ADC18B4CD2746AAF783EF3D1E42 10516BB113062DFCFB11B58FF654A1E6 454633F116ED380C9A8D51B4838EAAB4 3F4B5414 |
Encrypted client_DH_inner_data generated previously, serialized as a TL byte string |
message_id | 8, 8 | -01D4972452BA7966 |
+0134157075227B66 |
Message ID generated as specified here » (unixtime() << 32) + (N*4) |
message_length | 16, 4 | -80000000 (128 in decimal) |
+90000000 (144 in decimal) |
Message body length |
nonce | 24, 16 | -89661B737A3136754DC8B0EEC320B45A |
+C3C8F6BE0E4F8A08AEF2D44C207ACE47 |
Value generated by client in Step 1 |
server_nonce | 40, 16 | -5B48219D38803FACA0A5215A41BD8B78 |
+A0F0D7BA6EF00259FC989D20BA91C0BC |
Value received from server in Step 2 |
new_nonce_hash1 | 56, 16 | -F07C806F92420ACCC8F742B941396EEA |
+4539C61EB88FFC75EA2F4954F294D1D4 |
The 128 lower-order bits of SHA1 of the byte string derived from the new_nonce string by adding a single byte with the value of 1, 2, or 3, and followed by another 8 bytes with auth_key_aux_hash . Different values are required to prevent an intruder from changing server response dh_gen_ok into dh_gen_retry. |
Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/type/MyBoost.html b/data/web/corefork.telegram.org/type/MyBoost.html index d69ebc9858..e37df09aa2 100644 --- a/data/web/corefork.telegram.org/type/MyBoost.html +++ b/data/web/corefork.telegram.org/type/MyBoost.html @@ -72,8 +72,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/type/PremiumGiftCodeOption.html b/data/web/corefork.telegram.org/type/PremiumGiftCodeOption.html index 7cd0e62cea..39392f14d9 100644 --- a/data/web/corefork.telegram.org/type/PremiumGiftCodeOption.html +++ b/data/web/corefork.telegram.org/type/PremiumGiftCodeOption.html @@ -73,7 +73,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/type/PrepaidGiveaway.html b/data/web/corefork.telegram.org/type/PrepaidGiveaway.html index 3223bba826..8a34f078d0 100644 --- a/data/web/corefork.telegram.org/type/PrepaidGiveaway.html +++ b/data/web/corefork.telegram.org/type/PrepaidGiveaway.html @@ -73,7 +73,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/type/payments.CheckedGiftCode.html b/data/web/corefork.telegram.org/type/payments.CheckedGiftCode.html index 527c24c17c..1dbb9d9d31 100644 --- a/data/web/corefork.telegram.org/type/payments.CheckedGiftCode.html +++ b/data/web/corefork.telegram.org/type/payments.CheckedGiftCode.html @@ -92,7 +92,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/type/payments.GiveawayInfo.html b/data/web/corefork.telegram.org/type/payments.GiveawayInfo.html index 25e927f6a5..0f34832a14 100644 --- a/data/web/corefork.telegram.org/type/payments.GiveawayInfo.html +++ b/data/web/corefork.telegram.org/type/payments.GiveawayInfo.html @@ -97,7 +97,7 @@Telegram channel administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
+Telegram channel and supergroup administrators may launch giveaways to randomly distribute Telegram Premium subscriptions and other gifts among their followers, in exchange for boosts.
diff --git a/data/web/corefork.telegram.org/type/premium.BoostsList.html b/data/web/corefork.telegram.org/type/premium.BoostsList.html index 3c03b1dfcb..d15fd47cf6 100644 --- a/data/web/corefork.telegram.org/type/premium.BoostsList.html +++ b/data/web/corefork.telegram.org/type/premium.BoostsList.html @@ -96,8 +96,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/type/premium.BoostsStatus.html b/data/web/corefork.telegram.org/type/premium.BoostsStatus.html index 756111b2fd..9a87ba70a1 100644 --- a/data/web/corefork.telegram.org/type/premium.BoostsStatus.html +++ b/data/web/corefork.telegram.org/type/premium.BoostsStatus.html @@ -91,8 +91,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.
diff --git a/data/web/corefork.telegram.org/type/premium.MyBoosts.html b/data/web/corefork.telegram.org/type/premium.MyBoosts.html index f36c38c378..f17d325208 100644 --- a/data/web/corefork.telegram.org/type/premium.MyBoosts.html +++ b/data/web/corefork.telegram.org/type/premium.MyBoosts.html @@ -96,8 +96,8 @@Telegram Premium users can grant their favorite channels additional features like the ability to post stories by giving them boosts.
+Telegram Premium users can grant their favorite channels and supergroups additional features like the ability to post stories by giving them boosts.