Jump to content
McKay Development

Recommended Posts

Posted


client.logOn({
accountName: config.username1,
password: config.password1,
"twoFactorCode": SteamTotp.getAuthCode("shared_secret")
});
client.logOn({
accountName: config.username2,
password: config.password2,
"twoFactorCode": SteamTotp.getAuthCode("shared_secret")
});
Posted

You'd need two of whatever you're using to login too.

Thanks for the fast reply. But do you mean by that?

client.logOn({
    accountName: config.username1,
    password: config.password1,
	"twoFactorCode": SteamTotp.getAuthCode("config.shared_secret")
});
client.logOn({
    accountName: config.username2,
    password: config.password2,
	"twoFactorCode": SteamTotp.getAuthCode("config.shared_secret")
});
Posted

Thanks for the fast reply. So the code should be this?

var client1 = new SteamUser();
var client2 = new SteamUser();

client1.logOn({
accountName: config.username1,
password: config.password1,
    "twoFactorCode": SteamTotp.getAuthCode("config.shared_secret")
});
client2.logOn({
accountName: config.username2,
password: config.password2,
    "twoFactorCode": SteamTotp.getAuthCode("config.shared_secret")
});

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...