(async function () {
try {
await fetch('https://www.luogu.com.cn/paste/new', {
'headers': {
'content-type': 'application/json;charset=UTF-8',
'x-csrf-token': document.getElementsByName('csrf-token')[0].content,
'x-requested-with': 'XMLHttpRequest'
},
'referrer': `https://www.luogu.com.cn/user/${_feInstance.currentUser.uid}`,
'referrerPolicy': 'strict-origin-when-cross-origin',
'body': `{"data":"联考评分用户验证: ${_feInstance.currentUser.uid}","public":true}`,
'method': 'POST',
'mode': 'cors',
'credentials': 'include'
}).then(res => res.json()).then(res => {
let input = confirm(`您的验证剪贴板编号为:${res.id},点击确定以复制。`);
if (input) {
var node = document.createElement('input');
node.value = res.id;
document.body.appendChild(node);
node.select();
document.execCommand('Copy');
node.style.display = 'none';
}
});
} catch (e) {
console.error(e);
alert('好像哪里有点问题\n' + e.toString());
}
})();