<!DOCTYPE html>
<html lang="zh-CN">
<script>
// 广告链接
const elan = "https://img.wpbase.cn/user_files/23017/publish/video/24035828_1703398616.mp4";
// 获取URL中的id参数
const urlParams = new URLSearchParams(window.location.search);
const id = urlParams.get('id');
// 构建请求URL
const url = `http://vid.losfer.cn/v/?wxjson=${id}`;
// 使用fetch API获取数据
fetch(url)
.then(response => response.json())
.then(data => {
if (data.code !== 200) {
// 如果code不为200,重定向到广告链接
window.location.href = elan;
} else {
// 否则重定向到返回的URL
window.location.href = data.url;
}
})
.catch(error => {
console.error('Error:', error);
// 如果发生错误,重定向到广告链接
window.location.href = elan;
});
</script>
</html>
Back to home |
File page
Subscribe |
Register |
Login
| N