Jump to content
McKay Development

DriverVZ

Member
  • Posts

    3
  • Joined

  • Last visited

Posts posted by DriverVZ

  1. How can i get steamLoginSecure of cookie?

     

     

    function accountLogin (details) {
      community.login(details, (err, sessionID, cookies, steamguard, YourCookieValue) => {
            community.login({
              "accountName": details.accountName,
              "password": details.password,
            }, (err, sessionID, cookies, steamguard, YourCookieValue) => {
                if (err) {
                  console.log(err);
                } else {
                  store.setCookies(cookies);
     community.getWebApiOauthToken(function (err, token) {
     OAuthToken = token;
     });
                }
            });
      });
    }
×
×
  • Create New...