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;
私はすべてのアイデアがないので、エラーの原因を突き止めるのを手伝ってください。