25 lines
625 B
PHP
25 lines
625 B
PHP
<?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;
|