1.需求
按照格式输入批量qq号,输入加好友间隔时间,脚本自动打开qq应用开始自动加好友,全程自动化操作。
输入qq号格式:
运行示意图:
2.代码
function carmiLogin () {var carmi = getCarMi()try {const data = {"key": carmi}http.__okhttp__.setTimeout(30000)const result = http.post("http://121.41.10.129:8080/user/carmiLogin",data);const html = result.body.string();const obj = JSON.parse(html);print(obj);if (obj.code === 200) {toastLog("卡密登录成功!")return true;}else{toastLog(obj.msg)return false;}} catch (e