mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-29 12:03:54 +08:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
// 热门搜索
|
|
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
type: 1111,
|
|
}
|
|
return request('POST', `https://music.163.com/weapi/search/hot`, data, {
|
|
crypto: 'weapi',
|
|
ua: 'mobile',
|
|
cookie: query.cookie,
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
})
|
|
}
|