Skip to content

Instantly share code, notes, and snippets.

@UnluckyNinja
Created April 1, 2021 02:52
Show Gist options
  • Save UnluckyNinja/565f95e10cd04c8ef00148a1449aaee5 to your computer and use it in GitHub Desktop.
Save UnluckyNinja/565f95e10cd04c8ef00148a1449aaee5 to your computer and use it in GitHub Desktop.
撤销新浪购买vip时,自动授权给vip功能的代发微博权限(升级之类的),打开weibo.com然后F12控制台里粘贴&回车
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