未验证 提交 1c88464f 编写于 作者: B binaryify 提交者: GitHub

Merge pull request #851 from hcanyz/master

新增移动端 首页发现页 接口
// 首页-发现 block page
// 这个接口为移动端接口,首页-发现页,数据结构可以参考 https://github.com/hcanyz/flutter-netease-music-api/blob/master/lib/src/api/uncategorized/bean.dart#L259 HomeBlockPageWrap
// query.refresh 是否刷新数据
module.exports = (query, request) => {
const data = { 'refresh': query.refresh || true }
return request(
'POST', `https://music.163.com/api/homepage/block/page`, data,
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
)
}
\ No newline at end of file
// 首页-发现 dragon ball
// 这个接口为移动端接口,首页-发现页(每日推荐、歌单、排行榜 那些入口)
// 数据结构可以参考 https://github.com/hcanyz/flutter-netease-music-api/blob/master/lib/src/api/uncategorized/bean.dart#L290 HomeDragonBallWrap
// !需要登录或者匿名登录,非登录返回 []
module.exports = (query, request) => {
const data = {}
return request(
'POST', `https://music.163.com/eapi/homepage/dragon/ball/static`, data,
{
crypto: 'eapi',
cookie: query.cookie,
proxy: query.proxy,
url: '/api/homepage/dragon/ball/static'
}
)
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册