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

I am getting UsernameInvalidError with these usernames:

@vXq27LwPnJkFt
@bFw27JxVtKpLn
@tFw27LpKvXnJq

However, other usernames that were generated the same way are good and were successfully set. I am trying to understaned how to create 100% correct username

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

Telethon Chat

send stars yes but buy stars or premium no

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

Telethon Chat

TL Reference for GetSavedStarGifts

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

Telethon Chat

Hello guys. How can I get my profile gifts? Please help me

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

Telethon Chat

didn't get what do you need clarify it

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

Telethon Chat

How can the program be made to restart?

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

Telethon Chat

get a stabler connection

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

Telethon Chat

from telethon import TelegramClient, errors

api_id = '1234'
api_hash = 'abcdefgh'
client = TelegramClient('ankit', api_id, api_hash)

async def check():
try:
await client.connect()

if await client.is_user_authorized():
try:
await client.get_messages('me')
print("Session is authorized and active")
return
except errors.AuthKeyUnregisteredError:
print("Session terminated")
return
except errors.UserDeactivatedBanError:
print("Session banned")
return
except Exception as e:
print(f"Unexpected error while checking session: {e}")
return

print("Session not authorized. Let me log in again to check the cause.")
await client.start()
print("Logged in successfully.")

except errors.AuthKeyUnregisteredError:
print("Session terminated")
except errors.UserDeactivatedBanError:
print("Session banned")
except Exception as e:
print(f"Unexpected error: {e}")
finally:
await client.disconnect()

import asyncio
asyncio.run(check())

You can try it this way. Still, I'm confused as I don't have session data for a banned account. You can try and modify it as per your need.
It'll check whether the session is authorized or not, and if not authorized, it'll ask to log in to find the cause. When you enter a banned number, you'll get to know that the number is banned with an error like this:

Error: The used phone number has been banned from Telegram and cannot be used anymore. Maybe check https://www.telegram.org/faq_spam (caused by SendCodeRequest).

So, this means it's banned. In case it sends the OTP successfully, it means the session is terminated.
I'm not totally sure about it. AuthKeyUnregisteredError and UserDeactivatedBanError... these data are retrieved by the library at only runtime when a session is terminated or banned. Or you might be able to get this information even by connecting to telegram again.

Edit: If the script works and correctly returns "session terminated" or "session banned," you can remove this part:
await client.start()
print("Logged in successfully.")

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

Telethon Chat

Did you find a solution?
/channel/TelethonChat/659141

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

Telethon Chat

/channel/TelethonChat/611203

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

Telethon Chat

There are many people who do that

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

Telethon Chat

Does anyone have an idea about hunting old accounts in Telegram?

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

Telethon Chat

/channel/TelethonChat/255124

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

Telethon Chat

from telethon import TelegramClient, errors
api_id = 1234
api_hash = abcdefgh

client = TelegramClient('session', api_id, api_hash)

async def check():
try:
await client.connect()
print("Active")
except errors.AuthKeyUnregisteredError:
print("Session terminated")
except errors.UserDeactivatedBanError:
print("Session banned")
finally:
await client.disconnect()

with client:
client.loop.run_until_complete(check())

try this

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

Telethon Chat

Not working even the account is banned but it will goes in .is_user_authorized

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

Telethon Chat

How about sending premium?

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

Telethon Chat

then you won't get your answer here

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

Telethon Chat

Hello Is it possible to send and buy Stars or Premium on Telegram with the API? If yes, what library or API is defined for that?

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

Telethon Chat

I need dating site sources or movie streaming site source , worpress or react node application

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

Telethon Chat

I tried,

msg = await event.get_message()

await bot.edit_message(event.chat.id, message=msg.id, text=msg.text + "12", buttons=msg.reply_markup


It gave me same error

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

Telethon Chat

Don't use the bound method, it doesn't support user profile buttons, use client.edit_message() directly, if you must retain the buttons, reconstruct the Input version from the Keyboard one

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

Telethon Chat

client.connect() never raises errors. so excepts won't be reached, you must do any high-level request

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

Telethon Chat

Please advise why this is happening and how to bypass it so that the program runs stably

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

Telethon Chat

On a callbackquery

msg = await event.get_message()

await msg.edit(msg.text + "12")

I get ButtonTypeInvalidError, I'm assuming it's because one of my button is InputKeyboardButtonUserProfile. Is there any way to edit the messages without interacting with buttons

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

Telethon Chat

Hello, why this does not detects if message is in group with topics?

if hasattr(message, "forum_topic") and message.forum_topic

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

Telethon Chat

offtopic + illegal + against the ToS

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

Telethon Chat

As I understand, it won't help much in my case. I am also getting an entity to check if it's a private chat or not, and with input_entity it's impossible (?)

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

Telethon Chat

/channel/TelethonChat/623861

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

Telethon Chat

how is caching entities work? for example I use get_input_entity and then get_entity for the same entity a few times and it still tries to resolve username. I use /channel/{group} as argument

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

Telethon Chat

events.ChatAction
event.user_joined

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