当我尝试通过他们的 php sdk 更新 soundcloud 帐户的配置文件描述时,每次都会收到 403 错误。该应用程序已通过身份验证,我可以执行诸如放置评论之类的操作,但我无法更新个人资料上的任何内容(尤其是描述字段)。
我正在使用他们的官方文档中的标准代码:
<?php
require_once 'Services/Soundcloud.php';
// create a client object with access token
$client = new Services_Soundcloud('YOUR_CLIENT_ID', 'YOUR_CLIENT_SECRET');
$client->setAccessToken('YOUR_ACCESS_TOKEN');
// get the current user
$user = json_decode($client->get('me'));
// update the user's profile description
$user = json_decode($client->post('me', array(
'description' => 'I am using the SoundCloud API!'
)));
print $user->description;
请帮我找出错误来自哪里,因为我完全没有想法。