首页 > 解决方案 > Soundcloud API 是系统故障?

问题描述

Soundcloud API 是系统故障?

$url直到上个月,我才能通过以下方式访问 Soundcloud 。

但是,现在无法访问。

执行任何一个都$url将返回一个空数组。

示例1:获取曲目信息

$client_id = 'xxx'; 
$target = "https://soundcloud.com/account_name/track_name";
$url = "https://api.soundcloud.com/resolve.json?url=$target&client_id=$client_id";  

// this will return "{}"

示例2:获取搜索结果

$client_id = 'xxx'; 
$search_words = "apple";
$url = 'https://api.soundcloud.com/tracks?client_id=' . $client_id . '&q=' . $search_words;

// this will return also "{}"

我什至不知道我们如何解决这个问题。你有什么解决办法?

标签: phpapicurlsoundcloud

解决方案


推荐阅读