Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8100425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:44:00+00:00 2026-06-05T22:44:00+00:00

I’m attempting to create a Google 2 Factor Authorisation just as an experiment not

  • 0

I’m attempting to create a Google 2 Factor Authorisation just as an experiment not for any real practical reason.

I’m using the code supplied from: here

I build a QR Code URL via a function which has two parameters, $username and $secret

$qrcode_url = "https://www.google.com/chart?chs=200x200&chld=M|0&cht=qr&chl=otpauth://totp/{$username}%3Fsecret%3D{$secret}";

This correctly builds a URL.

The $username parameter is the user being logged in.

The $secret parameter is generated by Google2FA::generate_secret_key()

However, when I load a page which requests the QR Code, Google proclaims it ‘Your client has issued a malformed or illegal request’. This is where is gets annoying. If I click the address bar and send the request again it will load the QR Code which supplies a correct OTP (one time password). Then if I reload the page with the QR Code on it, this will also load correctly.

Any ideas as to what is causing this issue? It wouldn’t be anything to do with the fact I’m running it on XAMPP locally, does it?

Thanks in advance! :]

EDIT: Just to let you know, I don’t think it’s a Cache issue as I’ve cleared that and it still borks up.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T22:44:01+00:00Added an answer on June 5, 2026 at 10:44 pm

    I appear to have fixed this issue with a mixture of cURL and a different URL to access the image.

    Here is my complete solution:

    <?php
    public static function get_qr_code_url( $username, $secret )
    {
        $h              =   100;
        return  'http://chart.apis.google.com/chart?chs=' . $h . 'x' . $h . 
                '&chld=M|0&cht=qr&chl=' . urlencode( 'otpauth://totp/' . $username . '@' . $_SERVER['HTTP_HOST'] . '?secret=' . $secret );
    }
    
    public static function get_qr_code( $username, $secret )
    {
        if( FALSE === $secret )
        {
            return FALSE;
        }
        $url        =   self::get_qr_code_url( $username, $secret );
        $curl_handle    =   curl_init();
        $headers    =   array( 'Expect:' ); 
        $options    =   array(
            CURLOPT_URL     =>  $url,
            CURLOPT_CONNECTTIMEOUT  =>  2,
            CURLOPT_RETURNTRANSFER  =>  1,
            CURLOPT_USERAGENT   =>  'My-Google-Auth',
            CURLOPT_HTTPHEADER  =>  $headers
        );
        curl_setopt_array( $curl_handle, $options );
    
        $query  =   curl_exec( $curl_handle );
        curl_close( $curl_handle );
    
        $base_64=   chunk_split( base64_encode( $query ) );
    
        return '<img class="google_qrcode" src="data:image/gif;base64,' . $base_64 . '" alt="QR Code" />';
    }
        ?>
    

    I guess the only way I could maybe improve upon this is to actually save the image to the server and keep a local copy until the key was regenerated or something. But that’s if I was to ever implement this in a proper environment! :]

    Thanks for the help @Brad!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.