Jump to content
McKay Development

Steam Log On Response


expl0it

Recommended Posts

Hello.

 

I am working on site where users can dynamically add their accounts.

 

So I am trying to login every account, and I need to get login response.

 

Like node-steam module does it:

steamClient.connect();
steamClient.on('connected', function() 
{
  steamUser.logOn({
    account_name: 'username',
    password: 'password'
  });
});
steamClient.on('logOnResponse', function() { /* ... */});

steamClient.on('error', function(e) { /* ... */});

The problem is that node-steam-user just throws InvalidPassword.

I can only suppress it by using

process.on('uncaughtException', function (err) {
  console.log(new Date() + ' Caught exception: ' + err);
});

Is it possible to get logOn response somehow instead of this?

 

Regards.

Edited by expl0it
Link to comment
Share on other sites

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...