Forums
Home / Plugin: Wordpress 2-step verification / QR code is not displayed
(@mamekichi)
1 month ago
Hi!
There is no problem with authentication using mail. but, QR code is not displayed when setting up the Authenticator app
3 weeks, 6 days ago
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)
3 weeks, 5 days ago
Fixed in v2.6.2
3 weeks, 4 days ago
Hi! @as247
I confirmed that the QR code is displayed. thank you!