Skip to content

云盘歌曲信息匹配纠正

登录后调用此接口,可对云盘歌曲信息匹配纠正,如需取消匹配,asid 需要传 0

接口信息

项目
接口地址/cloud/match
请求方式GET / POST
需要登录
对应模块cloud_match
文档分类云盘与上传

请求参数

参数类型必填默认值说明
uidstring-用户 id
sidstring-云盘的歌曲 id
asidstring-要匹配的歌曲 id

HTTP 示例

bash
GET /cloud/match?uid=32953014&sid=aaa&asid=bbb
GET /cloud/match?uid=32953014&sid=bbb&asid=0

编程式调用

ts
import { cloudMatch } from 'hana-music-api'

const result = await cloudMatch({
  uid: '32953014',
  sid: 'aaa',
  asid: 'bbb',
})

console.log(result.body)

补充说明

说明 : 登录后调用此接口,可对云盘歌曲信息匹配纠正,如需取消匹配,asid 需要传 0

必选参数 :
uid: 用户 id

sid: 云盘的歌曲 id

asid: 要匹配的歌曲 id

接口地址 : /cloud/match

调用例子 : /cloud/match?uid=32953014&sid=aaa&asid=bbb /cloud/match?uid=32953014&sid=bbb&asid=0

Released under the MIT License.