安全密匙SecretKey: M5X3M4PGBQRFPUTY​Google Charts URL for the QR-Code: https://api.qrserver.com/v1/create-qr-code/?data=otpauth%3A%2F%2Ftotp%2Fwww.yundou.com%3Fsecret%3DM5X3M4PGBQRFPUTY&size=200x200&ecc=M​绑定手机办法(可以利用谷歌身份验证器或者FreeOTP)

通过安全秘钥通过二维码(图片地址便是Google Charts天生的可以直接打开)

天生二维码样例地址(二维码是不让发):

http://p1.toutiaoimg.com/large/pgc-image/bade464f1a854a939344be12aa2aab79

php谷歌验证手机php经由过程谷歌身份验证实现动态口令 CSS

动态口令验证

<?php​require_once './PHPGangsta/GoogleAuthenticator.php';​$ga = new PHPGangsta_GoogleAuthenticator();​// 把提交的验证码和做事端上天生的验证码做比拟// $secret 做事真个 \"大众安全密匙SecretKey\"大众// $oneCode 手机上看到的 \"大众一次性验证码\公众// 末了一个参数 为容差韶光,这里是2 那么便是 2 30 sec 一分钟.$oneCode = '371922';$secret = 'M5X3M4PGBQRFPUTY';​$checkResult = $ga->verifyCode($secret, $oneCode, 2);​​if ($checkResult) { //这里添加自定义逻辑 echo '匹配! OK';} else { echo '匹配! FAILED';}​

https://github.com/PHPGangsta/GoogleAuthenticator