使用Selenium / Python自动执行两步身份验证?

时间:2019-10-05 21:17:34

标签: python selenium authentication google-authentication

我尝试安装“ Google身份验证”和“身份验证”以使用两步验证,但两者都没有给我TOTP密钥...

我发现here的6位数字的输入代码

我尝试使用this获取所有TOTP密钥,但收到:'secret = undefined'

我需要什么? 我需要某种方法来获取6位身份验证,或者需要某种方法来简单地获取TOTP密钥,因为我只需要在代码中实现它即可。

有人知道我该怎么做吗?我正在使用Python + Selenium

1 个答案:

答案 0 :(得分:0)

尝试以下简单代码,并检查您是否提供了正确的机密。

from pyotp import *
totp = TOTP("16 chars secret code goes here")
token = totp.now()
print (token)