分享

如何对接泡椒云,给你的Auto.js脚本增加卡密验证功能?详细教程

 黄三岁大爱人生 2021-02-01

这篇文章主要讲解一下Auto.js开发者如何通过对接泡椒云sdk,给你自己写的脚本增加卡密验证功能。

泡椒云在线文档:https://docs./autojs_sdk.html

对接教程:

1、先将下载到的PJYSDK.js文件用编辑器打开,选中所有复制粘贴到你自己的Autojs代码文件中。下面就是一段引用PJYSDK.js的Auto.js示例程序:

  1. /* 将PJYSDK.js文件中的代码复制粘贴到下面空白处 */
  2. /* 将PJYSDK.js文件中的代码复制粘贴到上面空白处 */
  3. // AppKey 和 AppSecret 在泡椒云开发者后台获取
  4. let pjysdk = new PJYSDK('bnsekoso6itblafodqe6', 'm3p0lkODcCUpyf3o6DkktAQSJqqLygeV');
  5. pjysdk._protocol = 'https'
  6. pjysdk.debug = true;
  7. pjysdk.SetCard('mrfzBBIFb295RAE8');
  8. // 监听心跳失败事件
  9. pjysdk.event.on('heartbeat_failed', function(hret) {
  10. log('心跳失败,尝试重登...')
  11. sleep(2000);
  12. let login_ret = pjysdk.CardLogin();
  13. if (login_ret.code == 0) {
  14. log('重登成功');
  15. } else {
  16. toastLog(login_ret.message); //重登失败
  17. sleep(200);
  18. exit(); // 退出脚本
  19. }
  20. });
  21. // 当脚本正常或者异常退出时会触发exit事件
  22. events.on('exit', function(){
  23. pjysdk.CardLogout(); // 调用退出登录
  24. log('结束运行');
  25. });
  26. let login_ret = pjysdk.CardLogin();
  27. if (login_ret.code == 0) {
  28. // 登录成功,后面写你的业务代码
  29. } else {
  30. // 登录失败提示
  31. toast(login_ret.message);
  32. }
  33. // 当脚本正常或者异常退出时会触发exit事件
  34. events.on('exit', function(){
  35. pjysdk.CardLogout(); // 调用退出登录
  36. log('结束运行');
  37. });

2、然后根据文档(https://docs./autojs_sdk.html)初始化,开始使用。

3、下面给出了PJYSDK.js源码,懒得下载的朋友可以直接复制下面的代码。

//下面是PJYSDK.js源码const PJYSDK = (function(){function PJYSDK(app_key, app_secret){http.__okhttp__.setMaxRetries(0);http.__okhttp__.setTimeout(10*1000);this.event = events.emitter();this.debug = true;this._lib_version = 'v1.08';this._protocol = 'https';this._host = 'api.';this._device_id = this.getDeviceID();this._retry_count = 9;this._app_key = app_key;this._app_secret = app_secret;this._card = null;this._username = null;this._password = null;this._token = null;this.is_trial = false;  // 是否是试用用户this.login_result = {'card_type': '','expires': '','expires_ts': 0,'config': '',};this._auto_heartbeat = true;  // 是否自动开启心跳任务this._heartbeat_gap = 60 * 1000; // 默认60秒this._heartbeat_task = null;this._heartbeat_ret = {'code': -9, 'message': '还未开始验证'};this._prev_nonce = null;}PJYSDK.prototype.SetCard = function(card) {this._card = card.trim();}PJYSDK.prototype.SetUser = function(username, password) {this._username = username.trim();this._password = password;}PJYSDK.prototype.getDeviceID = function() {let id = device.serial;if (id == null || id == '' || id == 'unknown') {id = device.getAndroidId();}if (id == null || id == '' || id == 'unknown') {id = device.getIMEI();}return id;}PJYSDK.prototype.MD5 = function(str) {try {let digest = java.security.MessageDigest.getInstance('md5');let result = digest.digest(new java.lang.String(str).getBytes('UTF-8'));let buffer = new java.lang.StringBuffer();for (let index = 0; index < result.length; index++) {let b = result[index];let number = b & 0xff;let str = java.lang.Integer.toHexString(number);if (str.length == 1) {buffer.append('0');}buffer.append(str);}return buffer.toString();} catch (error) {alert(error);return '';}}PJYSDK.prototype.getTimestamp = function() {try {let res = http.get('http://api.m.taobao.com/rest/api3.do?api=mtop.common.getTimestamp');let data = res.body.json();return Math.floor(data['data']['t']/1000);} catch (error) {return Math.floor(new Date().getTime()/1000);}}PJYSDK.prototype.genNonce = function() {const ascii_str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';let tmp = '';for(let i = 0; i < 20; i++) {tmp += ascii_str.charAt(Math.round(Math.random()*ascii_str.length));}return this.MD5(this.getDeviceID() + tmp);}PJYSDK.prototype.joinParams = function(params) {let ps = [];for (let k in params) {ps.push(k + '=' + params[k])}ps.sort()return ps.join('&')}PJYSDK.prototype.CheckRespSign = function(resp) {if (resp.code != 0 && resp.nonce === '' && resp.sign === '') {return resp}let ps = '';if (resp['result']) {ps = this.joinParams(resp['result']);}let s = resp['code'] + resp['message'] + ps + resp['nonce'] + this._app_secret;let sign = this.MD5(s);if (sign === resp['sign']) {if (this._prev_nonce === null) {this._prev_nonce = resp['nonce'];return {'code':0, 'message':'OK'};} else {if (resp['nonce'] > this._prev_nonce) {this._prev_nonce = resp['nonce'];return {'code': 0, 'message': 'OK'};} else {return {'code': -98, 'message': '轻点,疼~'};}}}return {'code': -99, 'message': '轻点,疼~'};}PJYSDK.prototype.retry_fib = function(num) {if (num > 9) {return 34}let a = 0;let b = 1;for (i = 0; i < num; i++) {let tmp = a + b;a = bb = tmp}return a}PJYSDK.prototype._debug = function(path, params, result) {if (this.debug) {log('\n' + path, '\nparams:', params, '\nresult:', result);}}PJYSDK.prototype.Request = function(method, path, params) {// 构建公共参数params['app_key'] = this._app_key;method = method.toUpperCase();let url = this._protocol + '://' + this._host + pathlet max_retries = this._retry_count;let retries_count = 0;let data = {'code': -1, 'message': '连接服务器失败'};do {retries_count++;let sec = this.retry_fib(retries_count);delete params['sign']params['nonce'] = this.genNonce();params['timestamp'] = this.getTimestamp();let ps = this.joinParams(params);let s = method + this._host + path + ps + this._app_secret;let sign = this.MD5(s);params['sign'] = sign;let resp, body;try {if (method === 'GET') {resp = http.get(url + '?' + ps + '&sign=' + sign);} else {  // POSTresp = http.post(url, params);}body = resp.body.string();data = JSON.parse(body);this._debug(method+'-'+path+':', params, data);let crs = this.CheckRespSign(data);if (crs.code !== 0) {return crs;} else {return data;}} catch (error) {log('[*] request error: ', error, sec + 's后重试');this._debug(method+'-'+path+':', params, body)sleep(sec*1000);}} while (retries_count < max_retries);return data;}/* 通用 */PJYSDK.prototype.GetHeartbeatResult = function() {return this._heartbeat_ret;}PJYSDK.prototype.GetTimeRemaining = function() {let g = this.login_result.expires_ts - this.getTimestamp();if (g < 0) {return 0;}return g;}/* 卡密相关 */PJYSDK.prototype.CardLogin = function() {  // 卡密登录if (!this._card) {return {'code': -4, 'message': '请先设置卡密'};}let method = 'POST';let path = '/v1/card/login';let data = {'card': this._card, 'device_id': this._device_id};let ret = this.Request(method, path, data);if (ret.code == 0) {this._token = ret.result.token;this.login_result = ret.result;if (this._auto_heartbeat) {this._startCardHeartheat();}}return ret;}PJYSDK.prototype.CardHeartbeat = function() {  // 卡密心跳,默认会自动调用if (!this._token) {return {'code': -2, 'message': '请在卡密登录成功后调用'};}let method = 'POST';let path = '/v1/card/heartbeat';let data = {'card': this._card, 'token': this._token};let ret = this.Request(method, path, data);if (ret.code == 0) {this.login_result.expires = ret.result.expires;this.login_result.expires_ts = ret.result.expires_ts;}return ret;}PJYSDK.prototype._startCardHeartheat = function() {  // 开启卡密心跳任务if (this._heartbeat_task) {this._heartbeat_task.interrupt();this._heartbeat_task = null;}this._heartbeat_task = threads.start(function(){setInterval(function(){}, 10000);});this._heartbeat_ret = this.CardHeartbeat();this._heartbeat_task.setInterval((self) => {self._heartbeat_ret = self.CardHeartbeat();if (self._heartbeat_ret.code != 0) {self.event.emit('heartbeat_failed', self._heartbeat_ret);}}, this._heartbeat_gap, this);this._heartbeat_task.setInterval((self) => {if (self.GetTimeRemaining() == 0) {self.event.emit('heartbeat_failed', {'code': 10210, 'message': '卡密已过期!'});}}, 1000, this);}PJYSDK.prototype.CardLogout = function() {  // 卡密退出登录this._heartbeat_ret = {'code': -9, 'message': '还未开始验证'};if (this._heartbeat_task) { // 结束心跳任务this._heartbeat_task.interrupt();this._heartbeat_task = null;}if (!this._token) {return {'code': 0, 'message': 'OK'};}let method = 'POST';let path = '/v1/card/logout';let data = {'card': this._card, 'token': this._token};let ret = this.Request(method, path, data);// 清理this._token = null;this.login_result = {'card_type': '','expires': '','expires_ts': 0,'config': '',};return ret;}PJYSDK.prototype.CardUnbindDevice = function() { // 卡密解绑设备,需开发者后台配置if (!this._token) {return {'code': -2, 'message': '请在卡密登录成功后调用'};}let method = 'POST';let path = '/v1/card/unbind_device';let data = {'card': this._card, 'device_id': this._device_id, 'token': this._token};return this.Request(method, path, data);}PJYSDK.prototype.SetCardUnbindPassword = function(password) { // 自定义设置解绑密码if (!this._token) {return {'code': -2, 'message': '请在卡密登录成功后调用'};}let method = 'POST';let path = '/v1/card/unbind_password';let data = {'card': this._card, 'password': password, 'token': this._token};return this.Request(method, path, data);}PJYSDK.prototype.CardUnbindDeviceByPassword = function(password) { // 用户通过解绑密码解绑设备let method = 'POST';let path = '/v1/card/unbind_device/by_password';let data = {'card': this._card, 'password': password};return this.Request(method, path, data);}PJYSDK.prototype.CardRecharge = function(card, use_card) { // 以卡充卡let method = 'POST';let path = '/v1/card/recharge';let data = {'card': card, 'use_card': use_card};return this.Request(method, path, data);}/* 用户相关 */PJYSDK.prototype.UserRegister = function(username, password, card) {  // 用户注册(通过卡密)let method = 'POST';let path = '/v1/user/register';let data = {'username': username, 'password': password, 'card': card, 'device_id': this._device_id};return this.Request(method, path, data);}PJYSDK.prototype.UserLogin = function() {  // 用户账号登录if (!this._username || !this._password) {return {'code': -4, 'message': '请先设置用户账号密码'};}let method = 'POST';let path = '/v1/user/login';let data = {'username': this._username, 'password': this._password, 'device_id': this._device_id};let ret = this.Request(method, path, data);if (ret.code == 0) {this._token = ret.result.token;this.login_result = ret.result;if (this._auto_heartbeat) {this._startUserHeartheat();}}return ret;}PJYSDK.prototype.UserHeartbeat = function() {  // 用户心跳,默认会自动开启if (!this._token) {return {'code': -2, 'message': '请在用户登录成功后调用'};}let method = 'POST';let path = '/v1/user/heartbeat';let data = {'username': this._username, 'token': this._token};let ret = this.Request(method, path, data);if (ret.code == 0) {this.login_result.expires = ret.result.expires;this.login_result.expires_ts = ret.result.expires_ts;}return ret;}PJYSDK.prototype._startUserHeartheat = function() {  // 开启用户心跳任务if (this._heartbeat_task) {this._heartbeat_task.interrupt();this._heartbeat_task = null;}this._heartbeat_task = threads.start(function(){setInterval(function(){}, 10000);});this._heartbeat_ret = this.UserHeartbeat();this._heartbeat_task.setInterval((self) => {self._heartbeat_ret = self.UserHeartbeat();if (self._heartbeat_ret.code != 0) {self.event.emit('heartbeat_failed', self._heartbeat_ret);}}, this._heartbeat_gap, this);this._heartbeat_task.setInterval((self) => {if (self.GetTimeRemaining() == 0) {self.event.emit('heartbeat_failed', {'code': 10250, 'message': '用户已到期!'});}}, 1000, this);}PJYSDK.prototype.UserLogout = function() {  // 用户退出登录this._heartbeat_ret = {'code': -9, 'message': '还未开始验证'};if (this._heartbeat_task) { // 结束心跳任务this._heartbeat_task.interrupt();this._heartbeat_task = null;}if (!this._token) {return {'code': 0, 'message': 'OK'};}let method = 'POST';let path = '/v1/user/logout';let data = {'username': this._username, 'token': this._token};let ret = this.Request(method, path, data);// 清理this._token = null;this.login_result = {'card_type': '','expires': '','expires_ts': 0,'config': '',};return ret;}PJYSDK.prototype.UserChangePassword = function(username, password, new_password) {  // 用户修改密码let method = 'POST';let path = '/v1/user/password';let data = {'username': username, 'password': password, 'new_password': new_password};return this.Request(method, path, data);}PJYSDK.prototype.UserRecharge = function(username, card) { // 用户通过卡密充值let method = 'POST';let path = '/v1/user/recharge';let data = {'username': username, 'card': card};return this.Request(method, path, data);}PJYSDK.prototype.UserUnbindDevice = function() { // 用户解绑设备,需开发者后台配置if (!this._token) {return {'code': -2, 'message': '请在用户登录成功后调用'};}let method = 'POST';let path = '/v1/user/unbind_device';let data = {'username': this._username, 'device_id': this._device_id, 'token': this._token};return this.Request(method, path, data);}/* 配置相关 */PJYSDK.prototype.GetCardConfig = function() { // 获取卡密配置let method = 'GET';let path = '/v1/card/config';let data = {'card': this._card};return this.Request(method, path, data);}PJYSDK.prototype.UpdateCardConfig = function(config) { // 更新卡密配置let method = 'POST';let path = '/v1/card/config';let data = {'card': this._card, 'config': config};return this.Request(method, path, data);}PJYSDK.prototype.GetUserConfig = function() { // 获取用户配置let method = 'GET';let path = '/v1/user/config';let data = {'user': this._username};return this.Request(method, path, data);}PJYSDK.prototype.UpdateUserConfig = function(config) { // 更新用户配置let method = 'POST';let path = '/v1/user/config';let data = {'username': this._username, 'config': config};return this.Request(method, path, data);}/* 软件相关 */PJYSDK.prototype.GetSoftwareConfig = function() { // 获取软件配置let method = 'GET';let path = '/v1/software/config';return this.Request(method, path, {});}PJYSDK.prototype.GetSoftwareNotice = function() { // 获取软件通知let method = 'GET';let path = '/v1/software/notice';return this.Request(method, path, {});}PJYSDK.prototype.GetSoftwareLatestVersion = function(current_ver) { // 获取软件最新版本let method = 'GET';let path = '/v1/software/latest_ver';let data = {'version': current_ver};return this.Request(method, path, data);}/* 试用功能 */PJYSDK.prototype.TrialLogin = function() {  // 试用登录let method = 'POST';let path = '/v1/trial/login';let data = {'device_id': this._device_id};let ret = this.Request(method, path, data);if (ret.code == 0) {this.is_trial = true;this.login_result = ret.result;if (this._auto_heartbeat) {this._startTrialHeartheat();}}return ret;}PJYSDK.prototype.TrialHeartbeat = function() {  // 试用心跳,默认会自动调用let method = 'POST';let path = '/v1/trial/heartbeat';let data = {'device_id': this._device_id};let ret = this.Request(method, path, data);if (ret.code == 0) {this.login_result.expires = ret.result.expires;this.login_result.expires_ts = ret.result.expires_ts;}return ret;}PJYSDK.prototype._startTrialHeartheat = function() {  // 开启试用心跳任务if (this._heartbeat_task) {this._heartbeat_task.interrupt();this._heartbeat_task = null;}this._heartbeat_task = threads.start(function(){setInterval(function(){}, 10000);});this._heartbeat_ret = this.TrialHeartbeat();this._heartbeat_task.setInterval((self) => {self._heartbeat_ret = self.CardHeartbeat();if (self._heartbeat_ret.code != 0) {self.event.emit('heartbeat_failed', self._heartbeat_ret);}}, this._heartbeat_gap, this);this._heartbeat_task.setInterval((self) => {if (self.GetTimeRemaining() == 0) {self.event.emit('heartbeat_failed', {'code': 10407, 'message': '试用已到期!'});}}, 1000, this);}PJYSDK.prototype.TrialLogout = function() {  // 试用退出登录,没有http请求,只是清理本地记录this.is_trial = false;this._heartbeat_ret = {'code': -9, 'message': '还未开始验证'};if (this._heartbeat_task) { // 结束心跳任务this._heartbeat_task.interrupt();this._heartbeat_task = null;}// 清理this._token = null;this.login_result = {'card_type': '','expires': '','expires_ts': 0,'config': '',};return {'code': 0, 'message': 'OK'};;}/* 高级功能 */PJYSDK.prototype.GetRemoteVar = function(key) { // 获取远程变量let method = 'GET';let path = '/v1/af/remote_var';let data = {'key': key};return this.Request(method, path, data);}PJYSDK.prototype.GetRemoteData = function(key) { // 获取远程数据let method = 'GET';let path = '/v1/af/remote_data';let data = {'key': key};return this.Request(method, path, data);}PJYSDK.prototype.CreateRemoteData = function(key, value) { // 创建远程数据let method = 'POST';let path = '/v1/af/remote_data';let data = {'action': 'create', 'key': key, 'value': value};return this.Request(method, path, data);}PJYSDK.prototype.UpdateRemoteData = function(key, value) { // 修改远程数据let method = 'POST';let path = '/v1/af/remote_data';let data = {'action': 'update', 'key': key, 'value': value};return this.Request(method, path, data);}PJYSDK.prototype.DeleteRemoteData = function(key, value) { // 删除远程数据let method = 'POST';let path = '/v1/af/remote_data';let data = {'action': 'delete', 'key': key};return this.Request(method, path, data);}PJYSDK.prototype.CallRemoteFunc = function(func_name, params) { // 执行远程函数let method = 'POST';let path = '/v1/af/call_remote_func';let ps = JSON.stringify(params);let data = {'func_name': func_name, 'params': ps};let ret = this.Request(method, path, data);if (ret.code == 0 && ret.result.return) {ret.result = JSON.parse(ret.result.return);}return ret;}return PJYSDK;})();

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约