微信小程序 → 跳转 H5 授权页 → 用户登录音乐平台账号 → H5 回传授权票据 → 小程序调用接口拉取歌单https://kg.qq.com/playlistImportAuth/index.html?device_id=1234&client_ip=34.92.17.55| 参数名 | 说明 |
|---|---|
device_id | 设备唯一标识,建议每台设备使用唯一值,便于风控与授权管理 |
client_ip | 客户端 IP 地址 |
| 参数名 | 说明 |
|---|---|
ui | 页面 UI 风格,取值 1 或 2,对应两套不同的 UI 样式,默认为 1 |
action | 跳转调用的小程序 API,可选值:navigate、switch、relaunch、redirect,默认为 navigate |
path | 授权成功后跳转回的小程序页面路径(需使用 encodeURIComponent 进行编码) |
postMessage 将授权结果发送给小程序,数据格式如下: { state: "", token: "", openid: "", userid: "" }path 参数,授权成功后会自动在该路径后追加以下参数:state和 token、openid、userid{
"platform": "kugou",
"open_id": "A32EE299E73B51A0B30B9566C68BD14C",
"access_token": "NL8QO9DCASEAK613CI1R4GCQT28CHO7FJ9F8OBQM26VL0K3QPGJBLRTJF84SAK0MPTVM5HRC88P5QSG2ARM1U5OZ",
"device_id": "1785379223608",
"client_ip": "34.92.17.55",
"page": "1",
"page_size": "20"
}
curl --location 'https://api.kg.qq.com/karaoke/oper/v2/get_songlist' \
--header 'X-Open-App-ID: 100035' \
--header 'X-Open-ID: QDSKI1hSNtiUOyh7qLMcVxUIq71-exTejmRPDhiBzom' \
--header 'X-Open-Access-Token: EWpXs53i4nvOyd-1b0ElgOKPxlDkRXKpCBZ6gbkiOgM' \
--header 'Client-IP: 34.92.17.55' \
--header 'Client-IP: 103.178.153.145' \
--header 'Content-Type: application/json' \
--data '{
"platform": "kugou",
"open_id": "A32EE299E73B51A0B30B9566C68BD14C",
"access_token": "NL8QO9DCASEAK613CI1R4GCQT28CHO7FJ9F8OBQM26VL0K3QPGJBLRTJF84SAK0MPTVM5HRC88P5QSG2ARM1U5OZ",
"device_id": "1785379223608",
"client_ip": "34.92.17.55",
"page": "1",
"page_size": "20"
}'"code": 0,
"sub_code": 0,
"msg": "请求成功",
"data": {
"total": 6,
"list": [
{
"playlist_type": "self",
"playlist_id": "collection_3_1767947006_2_0",
"playlist_name": "我喜欢",
"playlist_pic": "",
"create_time": "1604407708",
"update_time": "1785393843",
"song_num": 5
},
{
"playlist_type": "self",
"playlist_id": "collection_3_1767947006_1_0",
"playlist_name": "默认收藏",
"playlist_pic": "",
"create_time": "1604407707",
"update_time": "1785381925",
"song_num": 0
},
{
"playlist_type": "self",
"playlist_id": "collection_3_1767947006_3_0",
"playlist_name": "test",
"playlist_pic": "http://c1.kgimg.com/stdmusic/480/20250101/20250101070457982332.jpg",
"create_time": "1785381860",
"update_time": "1785381925",
"song_num": 24
},
{
"playlist_type": "fav",
"playlist_id": "collection_3_1197733032_13_0",
"playlist_name": "这才是打游戏要听的",
"playlist_pic": "http://c1.kgimg.com/custom/480/20250916/20250916200925230243.jpg",
"create_time": "",
"update_time": "",
"song_num": 53
},
{
"playlist_type": "fav",
"playlist_id": "collection_3_2287701133_43_0",
"playlist_name": "没有技巧就是硬帅DJ",
"playlist_pic": "http://c1.kgimg.com/custom/480/20250312/20250312211816975698.jpg",
"create_time": "",
"update_time": "",
"song_num": 93
},
{
"playlist_type": "fav",
"playlist_id": "collection_3_2004771008_337_0",
"playlist_name": "伤感emo | 我的心总是灰蒙蒙,像下雨的天空",
"playlist_pic": "http://c1.kgimg.com/custom/480/20251004/20251004220940352520.jpg",
"create_time": "",
"update_time": "",
"song_num": 67
}
]
}
}