Bad Request: chat not found
def is_subscribed(chat_id, user_id):
result = bot.get_chat_member(chat_id, user_id)
print(result)
try:
bot.get_chat_member(chat_id, user_id)
return True
except ApiTelegramException as e:
if e.result_json['description'] == 'Bad Request: user not found':
return False
Уже пробовал и чат айди менять от другого чата, не могу понять в чем проблема, это должна была быть проверка на то состоит ли пользователь в телеграм канале, заранее спасибо за ответ