每次我尝试使用 youtube api 时都会收到此错误:
远程服务器返回错误:(401) Unauthorized。
在这段代码上:
public static YouTubeRequest AuthRequest()
{
YouTubeRequestSettings Setting =
new YouTubeRequestSettings("app", "key", "email", "pass");
Setting.Timeout = 99999999;
YouTubeRequest _request = new YouTubeRequest(Setting);
return _request;
}
我在这里获得了密钥:http ://code.google.com/apis/youtube/dashboard
以及电子邮件和密码,我检查了几次,它们工作正常。
我还在这里注册了我的应用程序:https ://code.google.com/apis/console
但是每次我尝试使用请求时都会出现错误,这是什么问题?谢谢