一、把文件/或者图片发送到tg频道/群组
使用国内机器的可以反代https://api.telegram.org
1、api发送视频代码:
https://api.telegram.org/bot机器人密匙/sendDocument?chat_id=群组/频道id&document=视频地址
例如:
https://api.telegram.org/bot111111111:AAbcd11111111/sendDocument?chat_id=-11111111111&document=https://111111111.mp4
2、api发送图片代码:
https://api.telegram.org/bot机器人密匙/sendPhoto?chat_id=群组/频道id&photo=图片地址
例如:
https://api.telegram.org/bot111111111:AAbcd11111111/sendPhoto?chat_id=-11111111111&photo=https://111111111.png
3、批量替换下载好的txt内容:
在视频网址或者图片网址前添加tg api链接
https://
替换为
https://api.telegram.org/bot111111111:AAbcd11111111/sendDocument?chat_id=-11111111111&document=https://
4、上传到服务器任何目录
下载Python脚本(跟txt文件同目录)
wget -c https://raw.githubusercontent.com/lzw981731/shell-1/master/vd3.py
5、运行Python3脚本
python3 vd3.py
代码说明:
t ime.s leep(5)#这里是每5秒访问一条(可以改为3秒,1秒或者2秒我觉得太快)
try跟except是异常处理,可以防止某些网址访问不进去导致代码运行中止.