oauth2callback.php 979 B

12345678910111213141516171819202122232425
  1. <?php
  2. // Load the Google API PHP Client Library.
  3. require_once __DIR__ . '/vendor/autoload.php';
  4. // Start a session to persist credentials.
  5. session_start();
  6. // Create the client object and set the authorization configuration
  7. // from the client_secrets.json you downloaded from the Developers Console.
  8. $client = new Google_Client();
  9. $client->setAuthConfig(__DIR__ . '/client_secrets.json');
  10. $client->setRedirectUri('http://' . $_SERVER['HTTP_HOST'] . '/oauth2callback.php');
  11. $client->addScope(Google_Service_Analytics::ANALYTICS_READONLY);
  12. // Handle authorization flow from the server.
  13. if (! isset($_GET['code'])) {
  14. $auth_url = $client->createAuthUrl();
  15. header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
  16. } else {
  17. $client->authenticate($_GET['code']);
  18. $_SESSION['access_token'] = $client->getAccessToken();
  19. $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . '/';
  20. header('Location: ' . filter_var($redirect_uri, FILTER_SANITIZE_URL));
  21. }