mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-29 03:48:20 +08:00
e66a264d9b
* issues #1019 的迫真修复
* 修复 issues #1019
* 修复 issues #1019
* 改回 pickedLyric() 逻辑
* 更进一步的避免取词卡死问题
* 更新网易云 api 到 4.2.0
* Update README.md
* Revert "Update README.md"
This reverts commit b862ef7d4d
.
59 lines
1.4 KiB
HTML
59 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>home</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="https://cdn.bootcdn.net/ajax/libs/axios/0.20.0-0/axios.min.js"></script>
|
|
<script>
|
|
const phone = '' // 这里填手机号
|
|
const password = '' // 这里填密码
|
|
const fileUpdateTime = {}
|
|
let cookieToken = ''
|
|
if (!phone || !password) {
|
|
const msg = '请设置你的手机号码和密码'
|
|
alert(msg)
|
|
throw new Error(msg)
|
|
}
|
|
|
|
async function login() {
|
|
const res = await axios({
|
|
url: `/login/cellphone?phone=${phone}&password=${encodeURIComponent(
|
|
password,
|
|
)}`,
|
|
})
|
|
cookieToken = res.data.cookie
|
|
}
|
|
async function main() {
|
|
await login()
|
|
const res = await axios({
|
|
url: `/homepage/block/page`,
|
|
data: {
|
|
cookie: cookieToken,
|
|
},
|
|
method: 'post',
|
|
})
|
|
let cursor = ''
|
|
console.log(res.data.data)
|
|
if (res.data.data.hasMore) {
|
|
cursor = res.data.data.cursor
|
|
const res2 = await axios({
|
|
url: `/homepage/block/page?time=${Date.now()}`,
|
|
data: {
|
|
cookie: cookieToken,
|
|
cursor: cursor,
|
|
},
|
|
method: 'post',
|
|
})
|
|
}
|
|
}
|
|
main()
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|