I am always getting authentication error now. I'm not using a "live" account like the other issue reported.
Skype4Sharp.Skype4Sharp mainSkype;
SkypeCredentials authCreds = new SkypeCredentials("avvidisc", "password");
mainSkype = new Skype4Sharp.Skype4Sharp(authCreds);
Logging.Write("[ LOGIN ]: Logging in with " + authCreds.Username + string.Join("", Enumerable.Repeat("*", authCreds.Password.Length)));
if (mainSkype.Login())
{
Logging.Write(" Skype Login complete" );
}
else
{
Logging.Write("Skype Login failed");
}
I am always getting authentication error now. I'm not using a "live" account like the other issue reported.
Thoughts @lin-e ?