initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 22:43:34 -04:00
commit c4a666e3b6
78 changed files with 5332 additions and 0 deletions

8
user/config.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
require_once($_SERVER['DOCUMENT_ROOT']."/googleApi/vendor/autoload.php");
$client = new Google_Client();
$client->setAuthConfig($_SERVER['DOCUMENT_ROOT'].'/googleApi/creds.json');
$client->addScope(Google_Service_Oauth2::PLUS_LOGIN);
$client->addScope(Google_Service_Oauth2::USERINFO_EMAIL);
$client->setRedirectUri("https://ib.lukeogburn.com/user/callback.php");
?>