• Resolved mamekichi

    (@mamekichi)


    Hi!

    There is no problem with authentication using mail. but, QR code is not displayed when setting up the Authenticator app

    • This topic was modified 6 months ago by mamekichi.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter mamekichi

    (@mamekichi)

    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);

    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);

    Plugin Author as247

    (@as247)

    Fixed in v2.6.2

    Thread Starter mamekichi

    (@mamekichi)

    Hi! @as247

    I confirmed that the QR code is displayed. thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.