Forums
Forums / Plugin: WP 2-step verification / QR code is not displayed
(@mamekichi)
1 year, 7 months ago
Hi!
There is no problem with authentication using mail. but, QR code is not displayed when setting up the Authenticator app
This is because the Google APIs QR code generation API has been discontinued.
line123 in /includes/Wp2sv_Setup.php $chart_url=sprintf("https://chart.googleapis.com/chart?chs=%sx%s&chld=L|0&cht=qr&chl=%s",$w,$h,$secret_url);
$chart_url=sprintf("https://chart.googleapis.com/chart?chs=%sx%s&chld=L|0&cht=qr&chl=%s",$w,$h,$secret_url);
You can display QR code by changing this, for example, as follows
$chart_url=sprintf("https://api.qrserver.com/v1/create-qr-code/?size=%sx%s&data=%s",$w,$h,$secret_url);
(@as247)
1 year, 6 months ago
Fixed in v2.6.2
Hi! @as247
I confirmed that the QR code is displayed. thank you!
The topic ‘QR code is not displayed’ is closed to new replies.