我想通过HTTP Web Request上传视频到Youtube。
我不想使用YouTube提供的任何DLL。
你可以尝试直接点击他们的API。我不知道为什么你不想使用他们的dll,但这将是最容易使用他们。
using (var client = new HttpClient())
{
var response = await client.PostAsync("https://www.googleapis.com/youtube/v3/insert", video);
var responseString = await response.Content.ReadAsStringAsync();
}