ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/public_html/ |
Upload File : |
<?php // Google API configuration define('GOOGLE_CLIENT_ID', '431280793469-5rl14mlcje5hrq6hqbg91feqf00fd1c1.apps.googleusercontent.com'); define('GOOGLE_CLIENT_SECRET', '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'); define('GOOGLE_REDIRECT_URL', 'https://localhost/taxhelpline/login.php'); //Include Google Client Library for PHP autoload file require_once 'vendor/autoload.php'; //Make object of Google API Client for call Google API $google_client = new Google_Client(); //Set the OAuth 2.0 Client ID $google_client->setClientId(GOOGLE_CLIENT_ID); //Set the OAuth 2.0 Client Secret key $google_client->setClientSecret(GOOGLE_CLIENT_SECRET); //Set the OAuth 2.0 Redirect URI $google_client->setRedirectUri(GOOGLE_REDIRECT_URL); $google_client->addScope('email'); $google_client->addScope('profile'); //start session on web page session_start(); ?>