1

有人在使用 Soundcloud.com api 并尝试更新 user[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 OK 的 HTTP 代码。但 soundcloud 上从未更新全名。我可以使用相同的代码更新“描述”或“城市”字段。

'full_name' 可能是只读的?!

Soundcloud 文档非常“有限”(由于缺少更好的词,英语不是我的母语),我在那儿(developers.soundcloud.com)找不到任何有关“不可更新”数据字段的信息。

提前感谢您的帮助,对不起我的英语不好。

4

0 回答 0