通过Java中的youtube API禁用视频评论
如何在java中使用Youtube API上传视频时禁用评论?
How to disable comments when uploading a video with Youtube API, in java ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在java中使用Youtube API上传视频时禁用评论?
How to disable comments when uploading a video with Youtube API, in java ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
经过快速谷歌后,我发现这个< /a>.
您想要做的是将 yt:accessControl 元素添加到视频条目,其操作属性为“comment”,权限属性为“moderated”。我不相信 Java 客户端库中存在本机支持或 yt:accessControl 元素,因此这必须“手动”完成。这是一些示例代码
假设您刚刚创建了一个新视频,然后执行部分更新以设置该视频的 yt:accessControl 值:
After a quick Google, I found this.
What you want to do is add an yt:accessControl element to the video entry, with an action attribute of "comment" and a permission attribute of "moderated". I don't believe that there is native support or the yt:accessControl element in the Java client library yet, so this would have to be done "by hand". Here's some example code that
assumes you've just created a new video, and then performs a partial update to set the yt:accessControl value for that video: