活动资讯 ·

网站加Auth认证

点击下载   (https://wp.blackcatw.com/s/x4nuW)

在新建一个文件,引用刚刚下载的文件

  require_once 'googleAuthenticator.php';

//require_once引用下载的的文件
  $ga = new PHPGangsta_GoogleAuthenticator();
  //获取谷歌令牌入库
 $secret = $ga->createSecret();
 $qrCodeUrl = $ga->getQRCodeGoogleUrl("黑猫网(www.blackcatw.com)", $secret);
 //验证动态口令
//$secret:获取保存的$secret
//$oneCode:手机上的动态验证码
 $checkResult = $ga->verifyCode($secret,$oneCode, 2);    // 2 = 2*30
 if (!$checkResult) {
  exit("动态口令错误");
}

 

参与评论