我正在使用python-telegram-bot编写电报机器人。
用户已创建带有邀请链接的私人论坛,并将我的漫游器添加为管理员。
我的机器人有没有办法获取群组的私人邀请链接?
我无法在漫游器中找到链接,也无法更新对象或其他任何对象。
from telegram.ext import Updater
def start(bot, update):
print(bot)
print(update)
updater = Updater(token=token)
updater.dispatcher.add_handler(CommandHandler('start', start))
updater.start_polling()