Open
Description
When I use your code to log in to Steam. As a result, I have Invalid Password. As I understand it, it does not work with MobileApp sessions. Is there anything I can do to make it work? Or am I doing something wrong?
LoginDetails = LoginDetails ?? new AuthSessionDetails
{
Username = BotSettings.Username,
IsPersistentSession = true,
GuardData = BotSettings.GuardData,
Authenticator = this,
ClientOSType = EOSType.Android9,
PlatformType = EAuthTokenPlatformType.k_EAuthTokenPlatformType_MobileApp,
};
var authSession = await SteamClient.Authentication.BeginAuthSessionViaCredentialsAsync(LoginDetails);
var pollResponse = await authSession.PollingWaitForResultAsync();
SteamUser.LogOn(
new LogOnDetails
{
Username = pollResponse.AccountName,
AccessToken = pollResponse.RefreshToken,
ShouldRememberPassword = true,
ClientOSType = EOSType.Android9,
LoginID = (uint)(new Random().Next(10000, 10000000)),
}
);
Metadata
Metadata
Assignees
Labels
No labels