Jump to content
McKay Development

Sent offer status is pending


Recommended Posts

Hi there.

I have problem with sending offer from my bot using tradeoffer-manager, when I try to send some offer only with my items I have status pending.

On steam in sent offers I see 'Awaiting for mobile confirmation'.

What is wrong? I have turned on 2FA and i'm logged in steam with my bot.

 

My code:

var offer = manager.createOffer("[U:1:123456789]");
  offer.addMyItem({"appid": 730, "contextid": 2, "assetid": "1234567890"});
  offer.send("Lorem ipsum...", "12345678", function(err, status) {
      if (err) {
          console.log(err);
      } else {
          console.log("Offer #" + offer.id + " " + status);
      }
  });
Link to comment
Share on other sites

If you'd read that page that was linked, you'd know that that's exactly what confirmation polling does.

 

I've added:

steam.checkConfirmations();

after that:

console.log("Offer #" + offer.id + " " + status);

and it's still not confirmed autimatically after send trade.

Link to comment
Share on other sites

What did you use to start confirmation checking?

 

I have 

steam.startConfirmationChecker(60000, identitySecret);

inside of 

steam.login() {

}

It will dont confirm offer immediately, its depends on steam.

Yes, but actually it is confirmed in 1min.

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