Serverless函数计算初体验抢杯子脚本阿里云马克杯活动0点抢杯子脚本自动提交

  • A+
所属分类:网购优惠

最近阿里云新上的马克杯活动比上次定制T恤活动要火爆很多,数量比上次也少很多,导致这一次有资格领取的人很多,但是大部分都没有领取到杯子,杯子晚上0点上线,转载一个自动领取脚本,有兴趣的大家可以试试。

活动地址:

https://blog.cysua.com/583.html

脚本使用:

  1. 打开活动页面并且登录:https://developer.aliyun.com/adc/series/fc/
  2. 改一下下面脚本里面的收件信息
  3. 浏览器页面按F12
  4. 将脚本粘贴到console里面并且回车执行

自己尝试尝试,数量比较少不一定能抢到。

setInterval(function(){ 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) {console.log(data.json())}).then(function(Json) {console.log(Json);})},1000)
Serverless函数计算初体验抢杯子脚本阿里云马克杯活动0点抢杯子脚本自动提交

发表评论

您必须登录才能发表评论!