mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-23 15:43:10 +00:00
修改领取会员成长值接口
This commit is contained in:
parent
b0e12093e5
commit
4102a705fb
@ -3376,13 +3376,13 @@ type='1009' 获取其 id, 如`/search?keywords= 代码时间 &type=1009`
|
|||||||
|
|
||||||
### 领取vip成长值
|
### 领取vip成长值
|
||||||
|
|
||||||
说明 : 登陆后调用此接口 , 可获取会员成长值
|
说明 : 登陆后调用此接口 , 可获取已完成的会员任务的成长值奖励
|
||||||
|
|
||||||
**必选参数 :** `id` : 会员任务 id
|
**必选参数 :** `ids` : 通过`/vip/tasks`获取到的`unGetIds`
|
||||||
|
|
||||||
**接口地址 :** `/vip/growthpoint/get`
|
**接口地址 :** `/vip/growthpoint/get`
|
||||||
|
|
||||||
**调用例子 :** `/vip/growthpoint/get?id=7043206830_7`
|
**调用例子 :** `/vip/growthpoint/get?ids=7043206830_7` `/vip/growthpoint/get?ids=8613118351_1,8607552957_1`
|
||||||
|
|
||||||
### 歌手粉丝
|
### 歌手粉丝
|
||||||
|
|
||||||
|
2
interface.d.ts
vendored
2
interface.d.ts
vendored
@ -1470,6 +1470,6 @@ export function vip_tasks(params: RequestBaseConfig): Promise<Response>
|
|||||||
|
|
||||||
export function vip_growthpoint_get(
|
export function vip_growthpoint_get(
|
||||||
params: {
|
params: {
|
||||||
id?: number | string
|
ids?: number | string
|
||||||
} & RequestBaseConfig,
|
} & RequestBaseConfig,
|
||||||
): Promise<Response>
|
): Promise<Response>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
const data = {
|
const data = {
|
||||||
taskIds: query.id,
|
taskIds: query.ids,
|
||||||
}
|
}
|
||||||
return request(
|
return request(
|
||||||
'POST',
|
'POST',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user