Everytime i try to use the youtube api i get this error:
The remote server returned an error: (401) Unauthorized.
on this code:
public static YouTubeRequest AuthRequest()
{
YouTubeRequestSettings Setting =
new YouTubeRequestSettings("app", "key", "email", "pass");
Setting.Timeout = 99999999;
YouTubeRequest _request = new YouTubeRequest(Setting);
return _request;
}
i acquired the key here : http://code.google.com/apis/youtube/dashboard
and the email and password, i checked a few times and they are working fine.
i also registered my application here : https://code.google.com/apis/console
but everytime i try to use the request i get the error, what is the problem? Thanks