Hi guys!
What is the best way for me to check if a user (i have their steamid64) has activated their mobile steam guard authenticator and no longer have a 15 days trade probation?
for now, im using this method:
Bot.tradeOfferManager.createOffer(tradeURL).getUserDetails((err, me, them) => {
const error = err?.message?.toLocaleLowerCase();
if (error) console.log(`ERROR in checkForErrors for user: ${userID}: ${error}`);
if (error?.includes('inventory privacy')) return resolve('private_inventory');
if (error?.includes('is no longer valid')) return resolve('invalid_trade_url');
if (!options.checkTradeBan) return resolve('');
if (them?.escrowDays > 0) return resolve('steam_guard_not_activated');
if (them?.probation) return resolve('trade_ban');
return resolve('');
});
by the way, I 100% know this is a bad code. but i don't know how else should i do this. (and also, it breaks from time to time and i have to hotfix it. it's broken now and I just want to do it properly, once and for all)