阿里云马克杯脚本

2,976 次浏览次阅读
没有评论

共计 947 个字符,预计需要花费 3 分钟才能阅读完成。

鉴于活动已经 4 天了,很多人手动抢不到马克杯,归根到底是脚本在作怪,阿里云程序员也是心大,怎么不搞个验证码呢。由于新秀昨晚已经手动抢到一个了,还有很多人没有抢到,基本都是秒无。所以也有大佬把脚本发了出来,这下好了,看谁的网速快吧。大家公平竞争!

阿里云马克杯脚本

打开  https://developer.aliyun.com/adc/series/fc/登录好
在 59 分 58 秒的时候 F12 控制台输入这段代码:

太提前了没用,另外注意替换里面的个人收货信息。

下面是脚本:

var times=0;
var a=setInterval(function(){
times++;
if(times>=30){clearInterval(a);
}
fetch("https://developer.aliyun.com/developer/api/award/receivePrize", {
"headers": {
"accept": "/",
"accept-language": "zh-CN,zh;q=0.9,en;q=0.8",
"cache-control": "no-cache",
"content-type": "application/json",
"pragma": "no-cache",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"x-requested-with": "XMLHttpRequest"
},
"referrer": "https://developer.aliyun.com/adc/series/fc/",
"referrerPolicy": "no-referrer-when-downgrade",
"body": '{"mobile":" 替换为手机号 ","awardId":"e7b816800c3f4ca9811eaaf3b6a29ccf","name":" 替换为姓名 ","extension":"{ "address": "替换为收获地址"}"}',
"method": "POST",
"mode": "cors",
"credentials": "include"
});
},200+Math.random()*100);
正文完
 
admin
版权声明:本站原创文章,由 admin 2020-07-06发表,共计947字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)