mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-09-03 05:57:19 +00:00
✨ separate authenticator example
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @filesource authenticator.php
|
||||
* @created 10.11.2017
|
||||
* @author Smiley <smiley@chillerlan.net>
|
||||
* @copyright 2017 Smiley
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
require_once '../vendor/autoload.php';
|
||||
|
||||
use chillerlan\{
|
||||
GoogleAuth\Authenticator,
|
||||
QRCode\QRCode,
|
||||
QRCode\Output\QRMarkup
|
||||
};
|
||||
|
||||
$authenticator = new Authenticator;
|
||||
|
||||
$secret = $authenticator->createSecret(); // -> userdata
|
||||
$data = $authenticator->getUri($secret, 'label', 'example.com');
|
||||
|
||||
// markup - svg
|
||||
echo '<!DOCTYPE html><html><head><meta charset="UTF-8"/></head><body><div>'.(new QRCode($data, new QRMarkup))->output().'</div></body>';
|
||||
|
||||
|
||||
@@ -9,16 +9,12 @@
|
||||
|
||||
require_once '../vendor/autoload.php';
|
||||
|
||||
use chillerlan\GoogleAuth\Authenticator;
|
||||
use chillerlan\QRCode\Output\{QRMarkup, QRMarkupOptions, QRImage, QRString,QRStringOptions};
|
||||
use chillerlan\QRCode\Output\{
|
||||
QRMarkup, QRMarkupOptions, QRImage, QRString, QRStringOptions
|
||||
};
|
||||
use chillerlan\QRCode\QRCode;
|
||||
|
||||
#$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
|
||||
#$data = 'skype://echo123';
|
||||
$authenticator = new Authenticator;
|
||||
|
||||
# otpauth://totp/test?secret=B3JX4VCVJDVNXNZ5&issuer=chillerlan.net
|
||||
$data = $authenticator->getUri($authenticator->createSecret(), 'test', 'chillerlan.net');
|
||||
$data = 'https://www.youtube.com/watch?v=DLzxrzFCyOs&t=43s';
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
|
||||
Reference in New Issue
Block a user