我使用google youtube api v3通过c#将视频上传到youtube。 我想用描述中的单词填充标签。 首先;我正在创建一个列表。
List<string> keywords=new List<string>();
在它之后,我正在分裂这些话。
string[] words = description.Split(' ');
如果单词&gt; 25,我将为关键字添加25个单词,否则我将添加全部。
int it;
if (words.Length > 25)
{
it= 25;
}
else
{
it = words.Length;
}
//keywords.RemoveAll(); //i want to remove all list if i added before, but it is not working...
我在这里添加。
for (int i = 0; i <it; i++)
{
keywords.Add(words[i]);
}
我需要在youtube视频标签中添加关键字。但它只得到一个字。我不知道为什么。
video.Snippet.Tags=keywords;