PHP版谷歌验证 (Google Authenticator)
程序员文章站
2022-07-10 17:54:33
直接上实例代码 giuhub:https://github.com/PHPGangsta/GoogleAuthenticator ......
直接上实例代码
<?php require_once 'PHPGangsta/GoogleAuthenticator.php'; $ga = new PHPGangsta_GoogleAuthenticator(); //创建一个新的"安全密匙SecretKey" //把本次的"安全密匙SecretKey" 入库,和账户关系绑定,客户端也是绑定这同一个"安全密匙SecretKey" $secret = $ga->createSecret(); echo "安全密匙SecretKey: ".$secret."\n\n"; $qrCodeUrl = $ga->getQRCodeGoogleUrl('www.iamle.com', $secret); //第一个参数是"标识",第二个参数为"安全密匙SecretKey" 生成二维码信息 echo "Google Charts URL for the QR-Code: ".$qrCodeUrl."\n\n"; //Google Charts接口 生成的二维码图片,方便手机端扫描绑定安全密匙SecretKey //$secret = "xxx";//用户的安全密匙 $oneCode = $ga->getCode($secret); //服务端计算"一次性验证码" echo "服务端计算的验证码是:".$oneCode."\n\n"; //把提交的验证码和服务端上生成的验证码做对比 // $secret 服务端的 "安全密匙SecretKey" // $oneCode 手机上看到的 "一次性验证码" // 最后一个参数 为容差时间,这里是2 那么就是 2* 30 sec 一分钟. // 这里改成自己的业务逻辑 $checkResult = $ga->verifyCode($secret, $_GET['code'],0); if ($checkResult) { echo '匹配! OK'; } else { echo '不匹配! FAILED'; }
上一篇: 边双联通分量与割边
推荐阅读
-
google谷歌账号注册显示此手机无法用于验证怎么办?
-
Google Authenticator(谷歌身份验证器)C#版
-
PHP设置谷歌验证器(Google Authenticator)实现操作二步验证
-
Laravel-google-authenticator--Google验证码
-
iOS版"谷歌搜索"加入语音交互 神似Google Now
-
Android中新引进的Google Authenticator验证系统工作原理浅析
-
PHP版谷歌验证 (Google Authenticator)
-
google地球无法连接验证服务器(谷歌地球服务器错误)
-
内网实现Google Authenticator二步验证
-
time-based基于google key生成6位验证码(google authenticator)