window.onload = function () { setTimeout(function () { //showSuccess(); verifySucc(); }, 300); function showSuccess() { document.getElementById("loadingText").style.display = "none"; document.getElementById("loadingSuccess").style.display = "block"; document.querySelector(".loadingSpinner").style.display = "none"; } function verifySucc() { let xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { window.location.reload(); } }; const requestUrl = "https://www.guangcanshu.com/set_access_token-e8c2ce4c0045f1b2cfd3a3acf965f6d7-191a468859d819d2d1943a1ea8a1d534-YWNs-bGVuc2Vz-"; xhr.open("GET", requestUrl, true); xhr.send(); } }