|
发表于
2021-11-26 16:11:39
|
显示全部楼层
// ==UserScript==
// @name 油猴中文网-自动关注up主
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1
// @description 油猴中文网-自动关注up主
// @author pangzi
// @match https://bbs.tampermonkey.net.cn/
// @grant GM_xmlhttpRequest
// @connect api.bilibili.com
// ==/UserScript==
(function() {
'use strict';
GM_xmlhttpRequest({
url:"https://api.bilibili.com/x/relation/modify",
method :"POST",
data:"fid=1037793830&act=1&re_src=120jsonp=jsonp&csrf=231165d5168f90e4c249ef817d008951",
headers: {
"Content-type": "application/x-www-form-urlencoded",
"Origin" :"https://search.bilibili.com",
"Referer" : "https://search.bilibili.com/天才少年李恒道"
},
onload:function(xhr){
console.log(xhr.responseText);
}
});
})();
可以使用了我把fid之间多余的删掉了,就可以使用了 |
|