gpt4 book ai didi

php - 将视频上传到 YouTube 作为不公开

转载 作者:IT王子 更新时间:2023-10-29 00:08:46 26 4
gpt4 key购买 nike

所以,我可以使用 PHP 客户端库将视频上传到 YouTube(直接上传)并将其设置为私有(private),但是否可以将其设置为不公开?

最佳答案

您必须将此代码用作请求的 XML 元素的子元素:

<yt:accessControl action="list" permission="denied"/>

如果您无法手动添加(通常使用 zend),您可以使用此代码添加相应的 zend 条目:

//Creates an extension to Zend Framework
$element = new Zend_Gdata_App_Extension_Element('yt:accessControl', 'yt', 'http://gdata.youtube.com/schemas/2007', '');

//Adds the corresponding XML child/attribute
$element->extensionAttributes = array(array('namespaceUri' => '', 'name' => 'action', 'value' => 'list'), array('namespaceUri' => '', 'name' => 'permission', 'value' => 'denied'));

//Adds this extension to you video entry where "$myVideo" is your video to be uploaded
$myVideo->extensionElements = array($element);

希望这对你有帮助:D

关于php - 将视频上传到 YouTube 作为不公开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6255807/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com