ABCHINA 大佬有话说 :
【马克杯】优化后的脚本,自行考虑,需搭配第三方使用
本帖最后由 ABCHINA 于 2020-7-6 10:04 编辑
以下地址两个窗口 https://developer.aliyun.com/adc/series/fc/
google浏览器安装Free Auto Refresh类似的插件。
第一个窗口定时5-30分钟刷新一下
第二个窗口F12粘贴一下代码,不用你去12点执行代码
成功抢到会有红色的输出。失败的都是灰色或者黑色输出
就不放code了。会忽略内容
setInterval(function () {
var date=new Date();
var hour=date.getHours();
var minute=date.getMinutes();
var seconds=date.getSeconds();
//23:59:30开始 00:00:59停止
if((hour===23&&minute===59&&seconds>=30)||(hour===0&&minute===0&&seconds<=59)){
fetch("https://developer.aliyun.com/developer/api/award/receivePrize", {
"headers": {
"accept": "*/*",
"content-type": "application/json",
"x-requested-with": "XMLHttpRequest"
},
"referrerPolicy": "no-referrer-when-downgrade",
"body": ‘{"mobile":"手机","awardId":"e7b816800c3f4ca9811eaaf3b6a29ccf","name":"姓名","extension":"{ ‘address’: ‘地址’ }"}’,
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(function (data) {
data.json().then((res,reg)=>{
if(res.success&&res.message.indexOf("成功")>-1){//成功
console.error(res)
}else{
//失败
console.log(res);
}
})
console.log(data.json())
}).then(function (Json) {
console.log(Json);
})
}
}, 50);//50毫秒
h20 大佬有话说 :
脚本有问题,你们脚本抢的可以回去看看,全部都回滚了,按钮并不是已领取:lol
heihai 大佬有话说 :
h20 大佬有话说 : 2020-7-6 10:05
脚本有问题,你们脚本抢的可以回去看看,全部都回滚了,按钮并不是已领取 …
回滚了?还好我是第一天手动档抢的:lolhttps://cdn.jsdelivr.net/gh/hishis/forum-master/public/images/patch.gif
风静树不止 大佬有话说 :
几块钱的东西懒得了。。。麻烦~~~~~~~~~
zzidc 大佬有话说 :
看大佬们忙碌的开脚本 帮顶
savior 大佬有话说 :
h20 大佬有话说 : 2020-7-6 10:05
脚本有问题,你们脚本抢的可以回去看看,全部都回滚了,按钮并不是已领取 …
上次T恤领取成功后也是这样的,页面根本不会去查询你有没有领成功,只有点击领的时候才告诉你
xutong 大佬有话说 :
savior 大佬有话说 : 2020-7-6 10:14
上次T恤领取成功后也是这样的,页面根本不会去查询你有没有领成功,只有点击领的时候才告诉你 …
对的,大可不必大惊小怪。
b67 大佬有话说 :
感谢分享:lol
瑶瑶小妖精 大佬有话说 :
杯子这么难抢
ZeroDu 大佬有话说 :
setInterval(function() {
var date = new Date();
var hour = date.getHours();
var minute = date.getMinutes();
var seconds = date.getSeconds();
//23:59:50开始 00:00:10停止
if ((hour === 23 && minute === 59 && seconds >= 50) || (hour === 0 && minute === 0 && seconds <= 10)) {
fetch("https://developer.aliyun.com/developer/api/award/receivePrize", {
"headers": {
"accept": "*/*",
"content-type": "application/json",
"x-requested-with": "XMLHttpRequest"
},
"referrerPolicy": "no-referrer-when-downgrade",
"body": ‘{"mobile":"手机","awardId":"e7b816800c3f4ca9811eaaf3b6a29ccf","name":"姓名","extension":"{ ‘address’: ‘地址’ }"}’,
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(function(data) {
return data.json();
}).then(function(res) {
if (res.success && res.message.indexOf("成功") > -1) { //成功
console.error(res)
} else {
//失败
console.log(res);
}
})
}
}, 50 + Math.random() * 10);https://cdn.jsdelivr.net/gh/hishis/forum-master/public/images/patch.gif