Skip to main content

getting internal error 500 while using google signup method [duplicate]

my _config.php

<?php

session_start();
require_once 'vendor/autoload.php';
$google_client = new Google_Client();
$google_client->setClientId('16194638744-qm9esnsemf65s3ghch246sprp7jimrcp.apps.googleusercontent.com');
$google_client->setClientSecret('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');
$google_client->setRedirectUri('http://localhost/houzz/partials/g-callback.php');

$google_client->addScope('email');
$google_client->addScope('profile');

?>

my g-callback.php

<?php

require_once "_config.php";

if(isset($_GET['code'])){
    $token = $google_client->fetchAccessTokenWithAuthCode($_GET['code']);   
    $_SESSION['access_token'] = $token;
}else if(isset($_SESSION['access_token'])){
    $google_client->setAccessToken($_SESSION['access_token']);
}else{
    header('Location: localhost/houzz/partials/_otp.php');
    exit();
}

$Oauth = new Google_Service_Oauth2($google_client);
$userData = $Oauth->userinfo_v2_me->get();
$_SESSION['id'] = $userData['id'];
$_SESSION['email'] = $userData['email'];
$_SESSION['gender'] = $userData['gender'];
$$_SESSION['picture'] = $userData['picture'];
$_SESSION['familyName'] = $userData['familyName'];
$_SESSION['givenName'] = $userData['givenName'];

header('Location : ../index.php');


?>

my _otp.php where i have google sign up button and some other things

<?php


require_once "_config.php";


$loginUrl = $google_client->createAuthUrl();

?>






<!doctype html>
<html lang="en">

<head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">


    <style>
    .form-Box {
        width: 50vh;
        /* display: flex; */
        position: relative;
        top: 30%;
        left: 5%;
        /* height: 100%; */
        width: 50%;
        align-items: center;
        margin: auto;
        justify-content: center;

    }

    .container {
        /* background-color: #43ba81; */
        height: 100vh;
    }

    body {
        background-color: rgba(33, 37, 41, 1);
        color: white;
    }



    .login-with-google-btn {
        transition: background-color .3s, box-shadow .3s;

        padding: 12px 16px 12px 42px;
        border: none;
        border-radius: 3px;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);

        color: #757575;
        font-size: 14px;
        font-weight: 500;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
        background-color: white;
        background-repeat: no-repeat;
        background-position: 12px 11px;
    }

    .login-with-google-btn:hover {
        background-color: grey;
        color: white;
    }




    @media screen and (max-width:950px) and (min-width:300px) {
        .form-Box {
            width: 100%;
        }



    }
    </style>

    <title>HOUZZ-Modern Way for living </title>
    <link rel="icon" href="../_utilityimages/title.svg" type="image/x-icon">
</head>

<body>



    <div class="container">

        <h2 style="text-decoration:underline; text-align: center; position:relative; top:20%;">WELCOME TO HOUZZ</h2>


        <div class="form-Box">



            <!-- <span><img id="googleicon" src="../_utilityimages/googleicon.svg" alt=""></span> -->
            <!-- Sign Up With GOOGLE -->
            <!-- <form action="_otp.php" method="POST">

                <button type="submit" style="width:80%;" class="btn login-with-google-btn">
                    Sign in with Google
                </button>
            </form> -->
            <form>

                <button type="button" style="width:80%;" onclick="window.location='<?php echo $loginUrl; ?>'"
                    name="google" class="btn login-with-google-btn">
                    Sign in with Google
                </button>

            </form>
            <h3 class="or">OR</h3>

            <form action="_otp.php" method="POST">
                <br>
                <span class="heading"><em>Enter Your Name</em></span>
                <br>
                <br>
                <div class="input-group mb-3 inputBox" style="width: 80%;">


                    <input type="text" name="name" class="form-control" placeholder="Enter Your Name">
                </div>
                <span class="heading"><em>Enter Your Mobile Number</em></span>
                <br>
                <br>

                <div class="input-group mb-3 inputBox" style="width: 80%;">
                    <span class="input-group-text" id="basic-addon1">+91</span>
                    <input type="text" name="mobile" class="form-control" placeholder="Enter Your Mobile Number"
                        aria-label="Username" aria-describedby="basic-addon1">
                </div>
                <button type="submit" name="sendOtp" class="btn btn-primary">Send OTP</button>
                <br>
                <br>
                <span class="heading">Enter The OTP sent to your Mobile Number</span>
                <br>
                <br>
                <div class="input-group mb3 inputBox" style="width: 80%;">
                    <input type="text" name="verify" class="form-control" placeholder="Enter sent OTP"
                        aria-label="Username" aria-describedby="basic-addon1">
                </div>
                <br>
                <button type="submit" name="verifyOtp" class="btn btn-primary">Verify OTP</button>
            </form>
        </div>
    </div>






    <!-- Optional JavaScript; choose one of the two! -->

    <!-- Option 1: Bootstrap Bundle with Popper -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
    </script>


    <!-- Option 2: Separate Popper and Bootstrap JS -->
    <!--
    <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
    -->
</body>

</html>

I am trying to include google signup method in y website and i am getting error lik this :-Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at postmaster@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Apache/2.4.52 (Win64) OpenSSL/1.1.1m PHP/7.4.27 Server at localhost Port 80 This error is coming when i am selecting any mail from a popper that is appearing on clicking the signup button . kindly help me out of this in a beginer friendly way



source https://stackoverflow.com/questions/70510840/getting-internal-error-500-while-using-google-signup-method

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...