telegram消息提醒BOT简单使用流程

程化
2023-12-01

创建消息提醒机器人

进入Telegram APP
找到@BotFather
输入/start
接下来根据英文提示创建自己的Bot


1.查找chat_id

GET https://api.telegram.org/bot{Your Bot Token}/getUpdates

2.安装python版本的telegramAPI

pip install python-telegram-bot

3.发送信息

import telegram

def main():
	# 代理请求
	proxy = telegram.utils.request.Request(proxy_url='socks5://127.0.0.1:1080')
	bot = telegram.Bot(your_bot_token, request=proxy)
	bot.send_message(chat_id=my_chat_id, text="hello world")

if __name__ == '__main__':
    main()
 类似资料: