ok

Mini Shell

Direktori : /home2/selectio/www/mm-tailor-billing/vendor/league/oauth2-google/examples/
Upload File :
Current File : /home2/selectio/www/mm-tailor-billing/vendor/league/oauth2-google/examples/provider.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;

Zerion Mini Shell 1.0