|
|
- 打开https://developer.aliyun.com/adc/series/fc/ 改下收件信息 然后F12 在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":"13800000000","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)
复制代码 |
|