<?php

error_reporting(E_ALL);
ini_set('display_errors', 1);

require 'google_config.php';

$client = getGoogleClient();
$authUrl = $client->createAuthUrl();

header("Location: " . $authUrl);
exit;
