利用 Telegram Bot 获取 WARP+ 推荐奖励流量并通知用户
- 刷取一定次数
- 不指定次数按 +∞ 刷取
- 指定次数刷取
- 刷取结果统计
- 添加管理命令
- 支持他人刷取
- 查询当前流量
- 设置定时任务
- 支持多种语言
Warning 需要 Python >= 3.7
git clone --depth=1 https://github.com/Oreomeow/warpplus && cd warpplus
pip3 install -r requirements.txt
-
通过 @BotFather 获取 Bot API Token
-
通过 WARP APP 获取 ID
-
根据
config.example.json
在同目录生成config.json
配置文件{ "TOKEN": "# Telegram bot API Token (可在 @botfather 获取,如 10xxx4:AAFcqxxxxgER5uw)", "USER_ID": "# Telegram 用户 ID (给 @getidsbot 发送 /start 获取到的纯数字 ID,如 1434078534)", "GIFT_LIMIT": "# 限制其他用户单次刷取次数,如 10,不限制则输入 0", "REFERRER": "# WARP 应用 (如 1.1.1.1) 内的设备 ID", }
python3 warpplus.py
Ctrl + C
退出
从以下方法中任选其一即可,或参考 Linux 守护进程的启动方法
-
Systemd (推荐)
一键脚本
bash install.sh
查看
warpplus
状态systemctl status warpplus
查看
warpplus
日志journalctl -u warpplus
启动
warpplus
systemctl start warpplus
停止
warpplus
systemctl stop warpplus
重启
warpplus
systemctl restart warpplus
杀死
warpplus
所有子进程systemctl kill warpplus
-
nohup python3 warpplus.py > warpplus.log 2>&1 &
查看日志
tail -f warpplus.log
-
-
创建会话
screen -S warpplus python3 warpplus.py
然后,按下
Ctrl + A
和Ctrl + D
,回到原来的会话 -
如果要查看日志,可以使用
screen -r warpplus
;如果要停掉会话,按下Ctrl + C
和Ctrl + D
-
-
-
安装
# Debian or Ubuntu apt install -y tmux # CentOS or RedHat yum install -y tmux
-
新建会话
tmux new -s warpplus python3 warpplus.py
-
分离会话
tmux detach
或键盘按下
Ctrl + B D
即可将当前会话与窗口分离 -
如果要查看日志,可以使用
tmux attach -t warpplus
;如果要杀死会话tmux kill-session -t warpplus
-
/bind <referrer> - 绑定 WARP 应用 (如 1.1.1.1) 内的设备 ID
/bind t <access_token> - 绑定 wgcf-account.toml 中的 access_token
/bind i <device_id> - 绑定 wgcf-account.toml 中的 device_id
/bind <access_token> <device_id> - 绑定成对
其中 <referrer>
和 <device_id>
其实是同一个,只是 <referrer>
可以在手机 APP 1.1.1.1
中找到,而从 wgcf-account.toml
提取的 <access_token>
和 <device_id>
必须绑定成对,否则无法进行流量查询
在安装了 wgcf 的机器上可以使用 Scripts/get.sh
进行快捷提取
也可以运行以下命令提取
if ! [ -f '/etc/wireguard/wgcf-account.toml' ]; then
echo "wgcf-account.toml 文件不存在,请查看是否已安装 wgcf。相关仓库 https://github.com/fscarmen/warp"
else
ACCESS_TOKEN=$(grep 'access_token' /etc/wireguard/wgcf-account.toml | cut -d \' -f2)
DEVICE_ID=$(grep 'device_id' /etc/wireguard/wgcf-account.toml | cut -d \' -f2)
echo "====================== 请复制以下内容 (不包括此行) ======================"
echo "${ACCESS_TOKEN} ${DEVICE_ID}"
echo "====================== 请复制以上内容 (不包括此行) ======================"
fi
start - 开始使用
query - 查询流量
plus - (<n>) 💂♂️管理员账号添加流量,不输入次数视为 +∞
bind - [点击查看具体用法] 绑定账号
unbind - 解除绑定
gift - (<n>) 获取流量,不输入次数视为 +∞
stop - 💂♂️管理员停止运行中的任务