Jump to content
McKay Development

acceptConfirmationForObject Give me Error without any error Message


Hellcase031

Recommended Posts

var client = new SteamUser();

var community = new SteamCommunity();

var manager = new TradeOfferManager({
    "steam": client, // Polling every 30 seconds is fine since we get notifications from Steam
    "domain": "example.com", // Our domain is example.com
    "language": "en", // We want English item descriptions
    "cancelTime" : 120000 //Cancellation Time in miliseconds 1000 ms = 1 second, After 2 minute cancel trade
});

 

 

 

var offer = manager_coinflip.createOffer(user_trade_url);
offer.addTheirItems(inv_to_trade);
offer.setMessage(secretMessage);
offer.send(function (err, status) {
    community.acceptConfirmationForObject("identitySecret", offer.id, function(invAcceptErr) {
        if (invAcceptErr) {  //Here I got error but do not print any error message in
          Console.log("Winner Trade Accept Error : ",invAcceptErr);
          return true;
        }
    });
})

 

 

Note : In above code I am putted statatically "identitySecret". Is it correct? Please let me suggest where I am wrong ?

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