7 lines
116 B
PHP
7 lines
116 B
PHP
<?php
|
|
|
|
require_once("config.php");
|
|
$authUrl = $client->createAuthUrl();
|
|
header("Location: ".$authUrl);
|
|
|
|
?>
|