Jump to content
McKay Development

Zaferix

Member
  • Posts

    13
  • Joined

  • Last visited

Posts posted by Zaferix

  1.  

    Are you using node to login?

    If yes, i hope it would help

    var client = new SteamUser();
    client.logOn({
        accountName: config.username, //type your username
        password: config.password,  //type your password
    	"twoFactorCode": SteamTotp.getAuthCode("shared_secret")  //type your shared secret
    });
    

    I don'T want to sign in steam community. I want to sign in a website using Steam

     

    Whatever i did it with Selenium Webdriver.

  2. 1. You're on your own with that.

    2. When SteamUser emits webSession, call SteamCommunity#setCookies with the cookies that webSession gave you.

     

    Thanks I have one more problem. Create account not working.

     

    client.logOn();
    
    
    client.on('loggedOn', function (details) {
        console.log("Logged as " + client.steamID.getSteam3RenderedID());
        client.setPersona(SteamUser.EPersonaState.Online);
    });
    
    
    client.createAccount("usernameiwrited", "passwordiwrited", "[email protected]", function (result, steamid) {
        console.log(result);
        console.log(steamid);
        console.log("Account Created.");
    });
     
    Does not work. I don't have any error or log just skip createaccount part. Account does not create.
×
×
  • Create New...