Q~音乐返回所选歌曲最高音质播放链接(无视会员限制)。
http://www.wmkxz.cn/api/qqyy.php?apikey=[你开通的apikey]
apikey
暂无返回参数说明
""
// 点击"发送请求"查看响应结果
$apiUrl = 'http://www.wmkxz.cn/api/qqyy.php'; $params = array( 'apikey' => 'YOUR_API_KEY', ); $response = file_get_contents($apiUrl . '?' . http_build_query($params)); $data = json_decode($response, true); print_r($data);
import requests url = "http://www.wmkxz.cn/api/qqyy.php" params = { "apikey": "YOUR_API_KEY", } response = requests.get(url, params=params) data = response.json() print(data)
const apiUrl = 'http://www.wmkxz.cn/api/qqyy.php'; const params = new URLSearchParams({ apikey: 'YOUR_API_KEY', }); fetch(`${apiUrl}?${params}`) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));