PATH:
home
/
centosnipponia
/
cronjscript
/
vendor
/
league
/
oauth2-google
/
examples
<?php require __DIR__ . '/../vendor/autoload.php'; use League\OAuth2\Client\Provider\Google; // Replace these with your token settings // Create a project at https://console.developers.google.com/ $clientId = 'your-client-id'; $clientSecret = 'your-client-secret'; // Change this if you are not using the built-in PHP server $redirectUri = 'http://localhost:8080/'; // Start the session session_start(); // Initialize the provider $provider = new Google(compact('clientId', 'clientSecret', 'redirectUri')); // No HTML for demo, prevents any attempt at XSS header('Content-Type', 'text/plain'); return $provider;
[+]
..
[-] index.php
[edit]
[-] provider.php
[edit]
[-] reset.php
[edit]
[-] server.sh
[edit]
[-] user.php
[edit]