我一整天都试图删除/添加视频到我的YouTube播放列表。我使用的是YouTube Data API v.3.0。对于.NET C#。 我已经在Google Developer Console中创建了一个项目,并获得了我的客户机密码JSON文件。此外,我获取列表项的代码工作正常,这意味着只有PUT操作不能按预期工作。我使用了与Google开发者网站代码示例中几乎相同的代码。
身份验证方法:
private async Task<YouTubeService> GetYouTubeService(string userEmail)
{
UserCredential credential;
using (var stream = new FileStream("client_secrets.json", FileMode.Open, FileAccess.Read))
{
credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
new[]
{
YouTubeService.Scope.Youtube,
YouTubeService.Scope.Youtubepartner,
YouTubeService.Scope.YoutubeUpload,
YouTubeService.Scope.YoutubepartnerChannelAudit,
YouTubeService.Scope.YoutubeReadonly
},
userEmail,
CancellationToken.None,
new FileDataStore(this.GetType().ToString()));
}
var youtubeService = new YouTubeService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = this.GetType().ToString()
});
return youtubeService;
}
将视频添加到播放列表代码:
private async Task AddSongToPlaylistAsync(string userEmail, string songId, string playlistId)
{
var youtubeService = await this.GetYouTubeService(userEmail);
var newPlaylistItem = new PlaylistItem();
newPlaylistItem.Snippet = new PlaylistItemSnippet();
newPlaylistItem.Snippet.PlaylistId = playlistId;
newPlaylistItem.Snippet.ResourceId = new ResourceId();
newPlaylistItem.Snippet.ResourceId.Kind = "youtube#video";
newPlaylistItem.Snippet.ResourceId.VideoId = songId;
newPlaylistItem = await youtubeService.PlaylistItems.Insert(newPlaylistItem, "snippet").ExecuteAsync();
}
这是我尝试将新视频添加到指定播放列表时收到的消息:
Google.Apis.Requests.RequestError 许可不足[403] 错误[ 消息[权限不足]位置[ - ]原因[insufficientPermissions]域[global] ]
我非常感谢任何可用的帮助,因为我没有找到任何有用的谷歌搜索。 先感谢您!
答案 0 :(得分:2)
我遇到了同样的问题,但是如果在向播放列表添加视频时有任何人遇到效率低下的问题,则需要使用YouTubeService.Scope.Youtube
(看起来你已经拥有)。
var scopes = new[]
{
YouTubeService.Scope.Youtube
};
如果您在获得权限后添加了范围,则需要转到此页面manage permissions来撤消客户端。您必须寻找您的特定客户。完成后,您可以重新运行应用程序并再次请求权限。
另一种选择是再次创建一个新的clientId和clientSecret,并确保您拥有合适的范围。我希望这会有所帮助。