不用下载app,点击二维码下面的setup key获取到secret并且保存好
接下来几行代码就可以解析了。
添加依赖
<dependency><groupId>com.amdelamar</groupId><artifactId>jotp</artifactId><version>1.3.0</version>
</dependency>
使用下面的程序解析出验证码
import com.amdelamar.jotp.OTP;
import com.amdelamar.jotp.type.Type;import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;public class TestGitHubCode {public static void main(String[] args) throws NoSuchAlgorithmException, InvalidKeyException {String hexTime = null;try {hexTime = OTP.timeInHex(System.currentTimeMillis(), 30);} catch (IOException e) {e.printStackTrace();}// 从Unable to scan? You can use the 【setup key】获取 to manually configure your authenticator app.// 把获取到的密钥进行解析String secret = "XXXXXXXXXXXXXXXXXXXXX";String code = OTP.create(secret, hexTime, 6, Type.TOTP);// 解析出验证码 输入就可以继续下面的操作,并下载保存第三步生成的文件,点击下面的按钮就可以了System.out.println(code);// Download your recovery codes}
}