0

我正在使用 PHP 库的“youtube api”,即 zend。

我的目标是设置描述,即当您在右侧的文本框中打开用户频道时看到的内容。

我做了什么。

function anmelden_yt($name,$passwort)
{
$yt_source = 'sou'; //name of application (can be anything)  
$yt_api_key = 'ak';
$yt = null;
$authenticationURL= 'https://www.google.com/youtube/accounts/ClientLogin';  
$httpClient = Zend_Gdata_ClientLogin::getHttpClient(  
$username = $name,  
$password = $passwort,  
$service = 'youtube',  
$client = null,  
$source = $yt_source, // a short string identifying your application  
$loginToken = null,  
$loginCaptcha = null,  
$authenticationURL); 
return new Zend_Gdata_YouTube($httpClient, $yt_source, NULL, $yt_api_key); 
}

$yt = anmelden_yt('name','pw');
$yt->setMajorProtocolVersion(2);
$userProfileEntry = $yt->getUserProfile('name');
$userProfileEntry->setAboutMe('test');
$userProfileEntry->setContent('test');
$userProfileEntry->setSummary('test');

没有改变。

4

1 回答 1

0

这些字段不再通过 API 公开。它们也与您所指的频道描述显示不对应。目前无法通过 API 设置该频道描述。

于 2012-11-30T16:29:39.297 回答