-
Notifications
You must be signed in to change notification settings - Fork 6
/
apply-code.html
111 lines (97 loc) · 4.76 KB
/
apply-code.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>飞鸟在线播放器</title>
<meta charset="UTF-8">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="/static/css/app.css" rel="stylesheet">
<style>
.apply-code-btn{
font-size: 24px; letter-spacing: 1px ; padding: 5px; background-color: #209CEE; border-radius: 10px;
}
.apply-code-btn:hover{
cursor: pointer;
background-color: #36a80a;
}
</style>
</head>
<body id="body">
<div class="header">
<div class="menu">
<a href="/" class="a-link menu-item">m3u8在线播放器</a>
<a href="/mpd-player.html" class="a-link menu-item">mpd在线播放器</a>
<a href="/iptv-list.html" class="a-link menu-item">IPTV 在线观看</a>
<!-- <a href="/cinema.html" class="a-link menu-item">简单私人影视站 DEMO</a> -->
<a href="/apply-code.html" class="a-link menu-item">申请激活码</a>
<a href="https://v6t.ipip.net/" data-href="https://test-ipv6.com/" class="a-link menu-item"
target="_blank">ipV6 检测</a>
</div>
</div>
<div style="text-align: center;">
<h1 id="videoName"> 申请激活码 </h1>
<p>可激活 flybird-m3u8downloader, flybird-iptv, flybird-url-checker</p>
</div>
<main>
<div>
<div>
<h3>flybird-m3u8downloader 下载地址</h3>
<p>windows 3.3.0之前版本不再支持使用, 请升级到最新版本。</p>
<p>
<a target="download" href="https://sourceforge.net/projects/flybird-m3u8downloader" style="color: #209CEE; text-decoration:underline; margin:0 20px;">sourceforge</a>
<a target="download" href="https://github.com/youwen21/flybird-m3u8downloader/releases/" style="color: #209CEE; text-decoration:underline; margin:0 20px;">github</a>
</p>
</div>
<div>
<h3>flybird-iptv 下载地址</h3>
<p>
<a target="download" href="https://sourceforge.net/projects/flybird-iptv" style="color: #209CEE; text-decoration:underline; margin:0 20px;">sourceforge</a>
<a target="download" href="https://github.com/youwen21/flybird-iptv/releases/" style="color: #209CEE; text-decoration:underline; margin:0 20px;">github</a>
</p>
</div>
<div>
<h3>flybird-url-checker 下载地址</h3>
<p>
<a target="download" href="https://sourceforge.net/projects/flybird-url-checker" style="color: #209CEE; text-decoration:underline; margin:0 20px;">sourceforge</a>
<a target="download" href="https://github.com/youwen21/flybird-url-checker/releases/" style="color: #209CEE; text-decoration:underline; margin:0 20px;">github</a>
</p>
</div>
<h3>无法下载软件 或者 无法申请激活码时,加qq群下载和申请激活码</h3>
</div>
<button class="btn btn-outline-success apply-code-btn" type="button"
onclick="applyCode()">点我免费获取激活码</button>
<div style=" max-width: 800px; margin-bottom: 100px;">
<p id="listensCode" style="word-break: break-word;"></p>
</div>
</main>
<div class="fooder">
<div style="margin: 5px;">QQ群:854313352 <a href="https://qm.qq.com/q/rL2UEWHnj2" target="_blank"
style="color: #209CEE; text-decoration:underline;">【进群-下载|交流】</a> </div>
</div>
<script>
function applyCode() {
fetch("https://flybird.himyou.com/api/listen/gen", {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
method: "POST",
}).then(response => response.json())
.then(json => {
// console.log(json)
if (json.code == 200) {
document.getElementById("listensCode").innerText = json.data
return
}
if (json.code != 200) {
document.getElementById("listensCode").innerText = "获取失败:" + json.msg
}
})
.catch(err => {
document.getElementById("listensCode").innerText = "获取失败,请加入QQ群获取激活码"
// document.getElementById("tip").style.display="fixed"
});
}
</script>
</body>
</html>