Jump to content
McKay Development

Thirtieth

Member
  • Posts

    7
  • Joined

  • Last visited

Posts posted by Thirtieth

  1. It seems everyone had that problem, but since about 12h if you provide login cookies you can do a decent amount of requests again.

    You only need to provide steamLogin and steamLoginSecure as cookies in the header. You don't seem to need to provide any other header data like referer.

    Well I gave it a shot but it look's like steam doesn't support my cookies or what. Could you give me please an example of yours (cURL example or smth)? I have these data, but it seems like I can't send it properly:(

  2.  

    If you know your apiKey you can insert it manually, it works:

    self.manager.setCookies(cookies, function(err) {
                    if(err) {
                        if(err.message.indexOf('429') != -1){
                            self.manager.apiKey = "***";
                            self.manager.doPoll();
                        }else{
                            self.relogin(err, callback);
                            return;
                        }
                    }
                    self.apiKey = self.manager.apiKey;
                    self.steam.chatLogon();
                    self.online = true;
                    if (typeof(callback) === 'function') {
                        callback();
                    }
                });
    

     

     

    I don't know why, but then it can see Inventory, but can't see trade offers (Error: 403).  :D

×
×
  • Create New...