Not sure if this is because steam changed how logins work or because steam's login is down, but I'm getting a WebException: Could not find remote server during SteamAPISession.Authenticate().
Here's the relevant part of the code:
SteamAPISession session = new SteamAPISession
// ...
Console.WriteLine("Logging in...");
LoginStatus logStatus = LoginStatus.LoginFailed;
try
{
logStatus = session.Authenticate(username, password);
}
catch (Exception e)
{
Console.WriteLine("Could not log in: " + e.Message);
Console.ReadKey();
return;
}
Is this a problem with my code or with the API?
Not sure if this is because steam changed how logins work or because steam's login is down, but I'm getting a
WebException: Could not find remote serverduringSteamAPISession.Authenticate().Here's the relevant part of the code:
Is this a problem with my code or with the API?