telethonchat | Unsorted

Telegram-канал telethonchat - Telethon Chat

6095

Official Telethon's chat! Rules: • Speak English • Stay on topic (questions about Telethon) • Be respectful • Don't ask to ask • Spam-related uses lead to ban • Read https://docs.telethon.dev before asking things here Read more about us @TelethonUpdates

Subscribe to a channel

Telethon Chat

Calling raw requests and getting output of them is so simple , the TelegramClient class defines the coroutine __call__ itself, and takes (request, ordered,flood_sleep_threshold) arguments that you do not need any other than the first one for usual.

So when you define your client ( that needs to be connected, and some requests require authorization ) you'll be able to call requests this way:

output = await client(Request())# for one request
outputs = await client([RequestOne(),RequestTwo()])
# you may pass requests in any list-like object, and now you can take advantage of the ordered parameter ( I guess, maybe not implemented )

Real examples for some webapp actions:

from telethon.tl.functions.messages import RequestWebViewRequest 
AuthorizedUrl = await client(RequestWebViewRequest(botpeer, botpeer, platform='android', url=url))

Pay attention to requests __init__ functions and that you need to "await".
Read telethon raw api page here.

Читать полностью…

Telethon Chat

maybe he will got kick automatically

Читать полностью…

Telethon Chat

i mean you will need to reply on his message if you meet him in group or something like that to cache his entity

Читать полностью…

Telethon Chat

you have to chat with this user even once

Читать полностью…

Telethon Chat

GetPinnedStories isn't for literally pinned stories.

Читать полностью…

Telethon Chat

Always try to email Telegram after getting banned, and never appoint to get help

But there's a beauty in chances, and you likely wanna try...

I tried either, and Idk did that cause one of my accounts to get unbanned and recovery or what else, but it worked anyway.

Читать полностью…

Telethon Chat

Damn that sucks, that was my favorite alt

Читать полностью…

Telethon Chat

depends on which location the gift is currently, and what you're willing to do with it

Читать полностью…

Telethon Chat

This is probably an old problem.
entities = self._mb_entity_cache.get_all_entities()

Returns an array of objects without the name, username attributes, then the username, name fields were reset in the orm::process_entities method. So far, I have improved the process_entities method and added verification of the transmitted data.

Читать полностью…

Telethon Chat

Hello every one

I continue debug problem with set NULL for attribute username, phone, name

I'm forked repository:
https://github.com/tulir/telethon-session-sqlalchemy


Debug method (parent telethon memory.py):


def _entity_values_to_row(self, id: int, hash: int, username: str, phone: str, name: str
) -> Any:
print(f"ORM:: _ENTITY_VALUES_TO_ROW. ID: {id}, HASH: {hash}, USERNAME: {username}, PHONE: {phone}, NAME: {name}")

return self.Entity(session_id=self.session_id, id=id, hash=hash, username=username, phone=phone, name=name)


And I see log before call client.disconnect():


ORM:: _ENTITY_VALUES_TO_ROW. ID: -1001634932777, HASH: 8240622244700762656, USERNAME: None, PHONE: None, NAME: <some name>
ORM:: _ENTITY_VALUES_TO_ROW. ID: -1002218550381, HASH: -6230714375329686792, USERNAME: None, PHONE: None, NAME: <some name>
ORM:: _ENTITY_VALUES_TO_ROW. ID: 136817688, HASH: 5289202305167059743, USERNAME: <some username>, PHONE: None, NAME: <some name>
ORM:: _ENTITY_VALUES_TO_ROW. ID: 5847030718, HASH: -6765206636774223826, USERNAME: <some username>, PHONE: <some phone>, NAME: <some name>


<some name>, <some phone>, <some name> - real data, hidden

And after call client.disconnect():


ORM:: _ENTITY_VALUES_TO_ROW. ID: -1001634932777, HASH: 8240622244700762656, USERNAME: None, PHONE: None, NAME: None
ORM:: _ENTITY_VALUES_TO_ROW. ID: -1002218550381, HASH: -6230714375329686792, USERNAME: None, PHONE: None, NAME: None
ORM:: _ENTITY_VALUES_TO_ROW. ID: 5847030718, HASH: -6765206636774223826, USERNAME: None, PHONE: None, NAME: None
ORM:: _ENTITY_VALUES_TO_ROW. ID: 136817688, HASH: 5289202305167059743, USERNAME: None, PHONE: None, NAME: None



I don't understand why None is set, it resets all values in the database, if I disable client.disconnect, then the problem goes away.

I'm usage sync client telethon, maybe that problem?

Читать полностью…

Telethon Chat

TL Reference for ImportChatInvite

Читать полностью…

Telethon Chat

Recently I got hit by FLOOD_WAIT_3. Everytime it's 3-4 seconds.

I am using getChannelDifference from many months, it was working fine without flood waits in past and now it suddenly giving flood waits after certain requests(I have already done my calculations through which I don't get that flood wait). I know I should wait for the specified time which I have already implemented. but do anyone have any other work arounds to not thrown by flood waits while using that end point even after sending more ?

Читать полностью…

Telethon Chat

Has telethon been updated with the new reports implemented by telegram?

Читать полностью…

Telethon Chat

Let's say I have 30k stars in my account, now I want to donate 1k stars and a 3-month premium subscription to another person! How do I do this? If possible, please send the document link from the Telegram site because I work with PHP but I didn't find anything on the Telegram site...

Читать полностью…

Telethon Chat

specify harder which one you want. premium purchase hasn't changed /channel/TelethonChat/567661, stars purchase is close /channel/TelethonChat/656059

Читать полностью…

Telethon Chat

hello everyone, guys, can I use telethon for commercial use so that the user-bot gets some statistics from public channels, as tgstat does, to the extent that it does not legally contradict tg?

Читать полностью…

Telethon Chat

does anyone know what happen there's no enough balance of stars with user for next month subscription after joining via subscription link

Читать полностью…

Telethon Chat

the the id is unknow I cannot do a send_message request, it returns same value error

Читать полностью…

Telethon Chat

Is there any way to get an user entity via the id?
https://docs.telethon.dev/en/stable/concepts/entities.html

on the doc it says to get the dialogs or get chat participants to cache the entities but the I only have the entity id and their not in any group or not in the chat list is it possible to get this user?

ValueError: Could not find the input entity for PeerUser(user_id=6648562231) (PeerUser). Please read https://docs.telethon.dev/en/stable/concepts/entities.html to find out more details.


I get value error when I try to find an unknown entity with just ID

Читать полностью…

Telethon Chat

I’m having trouble pulling all of the stories from a user

GetAllStoriesRequest - pulls your contact’s stories

GetPeerStoriesRequest - pulls active stories from a peer

GetPinnedStoriesRequest - pulls pinned stories from a peer

GetStoriesArchiveRequest - pulls old stories from you or your channel

How can I pull old non pinned stories from a peer? I feel like I’m missing something

Читать полностью…

Telethon Chat

Well it could cause that actually...
Np did nothing lol

Читать полностью…

Telethon Chat

Oh okay, I was running the program on several accounts so I wonder why only that one got deleted. Thanks

Читать полностью…

Telethon Chat

It is a bug then, open an issue or pr the improvement

it technically now overrides extra details other than id and access_hash for entities it receives as events, where they get added to message box memory cache, which doesn't store full objects

this happens every 60 seconds too not only in disconnect(), because of that, storing full objects until disconnection or for 60 seconds isn't ideal, maybe improving the _mb_entity_cache to include the extra details too and not use _as_input_peer

but it can cause sync issues since manual method response entities are stored right away unlike event ones, but not that important

Читать полностью…

Telethon Chat

Yes
._.If you meant friendly and without using TelegramClient.__call__ and raw requests, no.

Читать полностью…

Telethon Chat

hello, have web apps been implemented?

Читать полностью…

Telethon Chat

Hi and welcome to the group. Before asking any questions, please read the rules from the group's description, and don't forget to read the docs. Make sure you are using the latest version with pip3 install -U telethon, since most problems have already been fixed in newer versions.

Читать полностью…

Telethon Chat

/channel/TelethonChat/658606

Читать полностью…

Telethon Chat

Ask in a php MTProto library chat.

star to star sending is done by emoji gifts only. using InputInvoiceStarGift() with /channel/TelethonChat/645846

star to premium subscription gift is same as above. but with InputInvoicePremiumGiftStars() being inputInvoice object to use. it is unreleased and in master version only.

Читать полностью…

Telethon Chat

first time i knew this i thought it's not possible

Читать полностью…

Telethon Chat

you'll have to ask Telegram.

Читать полностью…
Subscribe to a channel