我正在尝试将YouTube数据API v3与RestSharp结合使用。问题是:尝试发送请求时收到响应:“未找到”。
var client = new RestClient("https://www.googleapis.com/youtube/v3/channels?part=statistics");
var request = new RestRequest(Method.POST);
request.AddParameter("key", my api key);
request.AddParameter("id", my channel id);
request.AddParameter("fields", "items/statistics/subscriberCount");
IRestResponse response = client.Execute(request);
var content = response.Content;
Console.WriteLine(response.Content);
this.BeginInvoke((System.Windows.Forms.MethodInvoker)delegate () { label1.Text = response.Content; });
这似乎与RestSharp或代码有关,因为在Google API资源管理器中,您可以测试输入并在那里工作。