Greasy Fork is available in English.
B站自动签到工具
< Feedback on B站自动签到
您好,您的代碼我在別的機器運作良好,但知為何在我常用的電腦一直顯示錯誤,直到我 comment out header的部分,如果不要hearder那即時在我常用的電腦運作依舊良好。不知道作者有沒有遇過這種情況,望解惑,謝謝。
function qd() {//签到方法 fetch("https://api.live.bilibili.com/xlive/web-ucenter/v1/sign/DoSign", { method: "GET",//GEt请求 mode: 'cors',//跨域 credentials: 'include',//允许携带cookie // headers: { // 'cookie': cookie,//设置cookie // } }).then(data => data.json()) .then(response => { console.log(response) localStorage.setItem("signInTime", new Date().toDateString())//设置签到的时间戳 show("签到完成")//显示提示 }) .catch(err => { show("发生错误",false) console.log(err) }) }
Sign in to post a reply.
您好,您的代碼我在別的機器運作良好,但知為何在我常用的電腦一直顯示錯誤,直到我 comment out header的部分,如果不要hearder那即時在我常用的電腦運作依舊良好。不知道作者有沒有遇過這種情況,望解惑,謝謝。