Identity Authorization
Once these steps are finished, the authorization should be finished as well
Login credentials
await auth.login({
username: "BestUsername",
password: "SuperSecretPassword",
captcha: captchaResponse
});
Multi-factor authentication
if (auth.isMultifactor) {
const loginCode = 428793;
await auth.multifactor(loginCode);
}
ref.