Hi, I have a problem with steamcommunity. I can only get trade confirmations those created manually when i call steamcommunity.getConfirmations. Those trade confirmations i created with steam-tradeoffer-manager can't get them. Thank you for help. attch file 111 can see i have 2 confirmations to confirm. but when i call getConfirmations i only get one~
var time = SteamTotp.time(steamBot.community._timeOffset);
var confKey = SteamTotp.getConfirmationKey(steamBot.option.identity_secret, time, 'conf');
var allowKey = SteamTotp.getConfirmationKey(steamBot.option.identity_secret, time, 'allow');
// steamBot.community.acceptAllConfirmations(time, confKey, allowKey, function(err, confs){
// if(err){
// res.sendError(err);
// return;
// }
// if(confs == null) confs = [];
// res.sendSuccess(confs);
// });
req.steamBot.community.getConfirmations(time, confKey, function(err,confs){
if(err){
res.sendError(err);
return;
}
res.sendSuccess();
});