需要使用包装器从 soundcloud API 调用简单请求

发布于 2024-11-15 09:29:53 字数 456 浏览 5 评论 0原文

我正在使用主 soundcloud 包装器(https://github.com/mptre/php-soundcloud)来尝试将曲目从我的帐户拉到我的网站上。我的整个事情工作得很好,但只是通过访问查询(我的用户名已更改并且不那么唯一,所以我需要更改查询)。所以我需要请求的正是这个“https://api.soundcloud.com/users/isound604/tracks.json”,如果您检查 API 控制台,您将看到它返回我的曲目。

我的问题是我不知道如何使用包装器发出此请求。我曾经使用:

$string = $soundcloud->get('tracks', array('q' => 'beatmanshan', 'order' => 'created_at'));

但新的请求似乎在该功能中不起作用。有人可以阐明这个问题吗?请提前感谢您!如果您需要更多信息,请告诉我。

I am using the main soundcloud wrapper (https://github.com/mptre/php-soundcloud) to try and pull the tracks off my account onto my website. I had the whole thing working great but just by accessing a query (my username has changed and isn't as unique, so i need to change the query). So what I need to request is exactly this "https://api.soundcloud.com/users/isound604/tracks.json" and if you check in the API console you will see it returns my tracks.

My problem is that i don't know how to make this request with the wrapper. I used to use:

$string = $soundcloud->get('tracks', array('q' => 'beatmanshan', 'order' => 'created_at'));

but the new request doesn't seem to work in that function. Can anybody shed any light on this issue? Please and thank you in advance! Let me know if you need any more info.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

也只是曾经 2024-11-22 09:29:53

您已经使用 api 进行了身份验证吗?检查

$my_details = json_decode($soundcloud->get('me'));

是否应该返回您的帐户详细信息

如果是这样您是否尝试过

$string = $soundcloud->get('users/isound604/tracks', array('order' => 'created_at'));

Have you already authenticated ok using the api? To check

$my_details = json_decode($soundcloud->get('me'));

Should return your account details

If so have you tried

$string = $soundcloud->get('users/isound604/tracks', array('order' => 'created_at'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文