Jump to content
McKay Development

getEscrowDuration invalid cookies issue


Recommended Posts

When cookies get outdated, you will receive "Malformed response" error instead of some error saying 'hey, your cookies are not valid any longer, request new!'.

This method opens new offer page and looks for js vars in html code, if your session is invalid, the steam will redirect you to login page instead of returning 401 unauthorized. 

I applied this simple fix on my and to prevent this:

 

node-steam-tradeoffer-manager/lib/index.js

in function _escrowDurationResponse, just after checking for HTTP errors

    if(response.request.uri.pathname === '/login/home/'){
		callback(new Error('Unauthorized'));
		return;
	}
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...