是否有人使用Soundcloud.com api并尝试更新用户[full_name]?
我正在开发自己的PHP包装器,但我已经使用'官方支持的'php包装器测试过,也没有运气。
'full_name'是否可能是只读数据字段?!
<?php
require_once 'Services/Soundcloud.php';
// create a client object with access token
$client = new Services_Soundcloud('YOUR_CLIENT_ID', 'YOUR_CLIENT_SECRET');
// get authrization login
// authorize application, get the CODE here
// ...
// then set the oauth2_token to access 'private' aka logged-in-only resources
$client->setAccessToken('ACCESS_TOKEN');
// get the current user
$user = json_decode($client->get('me'));
// update the user's profile full_name
$user = json_decode($client->put('me', array(
'user[full_name]' => 'John Doe'
)));
print $user->full_name;
当我运行此代码时..我在我的cURL处理程序上收到一个200 CO的HTTP CODE。 但是声音云上的全名永远不会更新。我可以使用相同的代码更新“描述”或“城市”字段。
'full_name'可能是只读的吗?!
Soundcloud文档非常“有限”(缺少更好的单词,英语不是我的母语),我找不到(developers.soundcloud.com)有关“不可更新”数据字段的任何信息。 / p>
感谢您的帮助, 抱歉我的英语不好。