简介
1.这是一个 Telegram 发卡机器人,此机器人基于 Python 开发;
2.使用 sqlite3 作为数据库,轻量、便于备份;
3.已适配 “易支付”、“支付宝当面付” 支付接口。
项目地址:Github
官方 TG 群组:TG发卡机器人 反馈建议
部署
非大陆 CentOS 7.x 机器一台
1.安装工具
yum install git vim -y
yum install python36 python36-pip -y
2.克隆项目
git clone -b master https://github.com/lulafun/tg_faka_bot.git
cd tg_faka_bot
3.安装依赖
pip3 install -r requirements.txt
cp config.py.example config.py
vim config.py
修改配置文件:
TG 搜索 @BotFather
申请 TOKEN
(步骤:/newbot 机器人名称 - 机器人ID_bot)
TG 搜索 @getmyid_bot
获取 ID 填入 ADMIN_ID
4.调试
python3 main.py
5.放置后台运行
nohup python3 main.py >/dev/null 2>&1 &
支付接口
支付宝当面付
cd ~/tg_faka_bot/getways/alifacepay/
pip3 install -r alifacepay.txt
vim alifacepay.py
按提示填入 appid
,应用私钥
,支付宝公钥
,保存。
重新运行 main.py,确保支付接口启用。