UNPKG

@xnfa/netease-music-api

Version:

网易云音乐 NodeJS 版 API

48 lines (43 loc) 1.05 kB
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>登录</title> </head> <body> <script src="https://fastly.jsdelivr.net/npm/axios@0.26.1/dist/axios.min.js"></script> <script> const phone = '' // 这里填手机号 const password = '' // 这里填密码 const fileUpdateTime = {} if (!phone || !password) { const msg = '请设置你的手机号码和密码' alert(msg) throw new Error(msg) } async function login() { const res = await axios({ url: `/login/cellphone`, method: 'post', data: { phone: phone, password: password, }, }) return res.data.cookie } async function main() { const cookieToken = await login() const res = await axios({ url: `/login/status`, method: 'post', data: { cookie: cookieToken, }, }) } main() </script> </body> </html>