Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #851 from hcanyz/master
Browse files Browse the repository at this point in the history
新增移动端 首页发现页 接口
  • Loading branch information
Binaryify authored Jul 18, 2020
2 parents 76cea02 + b992f11 commit 1c88464
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions module/homepage_block_page.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// 首页-发现 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 }
)
}
16 changes: 16 additions & 0 deletions module/homepage_dragon_ball.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// 首页-发现 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'
}
)
}

0 comments on commit 1c88464

Please sign in to comment.