import telegram
token1='your token'
bot = telegram.Bot(token=token1)
chat_id = bot.getUpdates()[-1].message.chat_id
bot.sendMessage(chat_id=chat_id, text="I'm TEST.")
import telegram
token1='your token'
bot = telegram.Bot(token=token1)
chat_id = bot.getUpdates()[-1].message.chat_id
bot.sendMessage(chat_id=chat_id, text="I'm TEST.")
請先 登入 以發表留言。