Jump to content
McKay Development

Resuming session using cookies


Recommended Posts

I've cookies array like this:

[ 
  'sessionid=7030e64a53d6f7860bc69038', 
  'steamLogin=76561198447561491%7c%7c3B5AF02B12EC2F367974917BC090EB7F0E6B3B91', 
  'steamLoginSecure=76561198447561491%7c%7c1CC92BDD67243C7E761681E40E3B8419416AA858' 
]

I get an error "not logged in" when I try to log in trade offer manager through cookies using setCookies method. I take cookies a minute before using setCookies method
Can someone explain why i get an error?

Link to comment
Share on other sites


var cookies = db_data.cookies.split(","); // cookies in db stored as string
var steam_community = new SteamCommunity();
var offer_manager = new TradeOfferManager({
"community": steam_community
});

offer_manager.setCookies(cookies, function(err) {
if (err) {
console.log(err);
console.log(cookies);
return;
}
console.log("Got API key: " + offer_manager.apiKey);
});

 

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