PHP - 구글 OTP(Google Authenticator) 인증 연동
라이브러리 구하기아래 github 만 참고하면 간단히 구현할 수 있다. LINKPHPGangsta/GoogleAuthenticator 아래 파일을 다운로드하고 include 한다. 예제 테스트테스트 파일을 아래와 같이 작성한다. createSecret();echo "Secret is: ".$secret."";$qrCodeUrl = $ga->getQRCodeGoogleUrl('Admin', $secret, 'Blog');echo "Google Charts URL for the QR-Code: ".$qrCodeUrl."";$oneCode = $ga->getCode($secret);echo "Checking Code '$oneCode' and Secret '$secret'";$checkResult = $ga-..