如何从Steam Desktop Authenticator获取蒸汽防护代码的Steam帐户共享密钥? Steam Desktop Authenticator
我正在使用Steam totp
client.on("steamGuard", function(domain, callback, lastCodeWrong){
if(lastCodeWrong) {
console.log("Last code wrong, trying again!");
}
var code = SteamTotp.generateAuthCode(//SHARED SECRET HERE);
callback(code);
})