Created
April 1, 2021 02:52
-
-
Save UnluckyNinja/565f95e10cd04c8ef00148a1449aaee5 to your computer and use it in GitHub Desktop.
撤销新浪购买vip时,自动授权给vip功能的代发微博权限(升级之类的),打开weibo.com然后F12控制台里粘贴&回车
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch("https://app.weibo.com/aj_app_revoke.php", { | |
"credentials": "include", | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "zh-CN,zh;q=0.9", | |
"cache-control": "no-cache", | |
"content-type": "application/x-www-form-urlencoded", | |
"pragma": "no-cache", | |
"x-requested-with": "XMLHttpRequest" | |
}, | |
"referrer": "https://app.weibo.com/my?type=&p=1", | |
"referrerPolicy": "no-referrer-when-downgrade", | |
"body": "app_id=6evo6i&_t=0", // 6evo6i 就是vip应用的appid | |
"method": "POST", | |
"mode": "cors" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment