设置经过身份验证的用户关于我/说明/摘要

时间:2012-11-29 20:38:54

标签: php youtube-api

我正在使用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');

没有任何改变。

1 个答案:

答案 0 :(得分:0)

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