-
Notifications
You must be signed in to change notification settings - Fork 2
/
google.php
91 lines (62 loc) · 2.64 KB
/
google.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
// In Google Console Authorized Redirect URIs, add this URL: http://localhost/WYDRN/google.php
//Include Configuration File
include('oAuth.php');
$login_button = '';
if (isset($_GET["code"])) {
$token = $google_client->fetchAccessTokenWithAuthCode($_GET["code"]);
if (!isset($token['error'])) {
$google_client->setAccessToken($token['access_token']);
$_SESSION['access_token'] = $token['access_token'];
$google_service = new Google_Service_Oauth2($google_client);
$data = $google_service->userinfo->get();
if (!empty($data['given_name'])) {
$_SESSION['user_first_name'] = $data['given_name'];
}
if (!empty($data['family_name'])) {
$_SESSION['user_last_name'] = $data['family_name'];
}
if (!empty($data['email'])) {
$_SESSION['user_email_address'] = $data['email'];
}
if (!empty($data['picture'])) {
$_SESSION['user_image'] = $data['picture'];
}
}
}
if (!isset($_SESSION['access_token'])) {
$login_button = '<a href="' . $google_client->createAuthUrl() . '">Login With Google</a>';
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP Login using Google Account</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br />
<h2 align="center">PHP Login using Google Account</h2>
<br />
<div class="panel panel-default">
<?php
if ($login_button == '') {
echo '<div class="panel-heading">Welcome User</div><div class="panel-body">';
echo '<img src="' . $_SESSION["user_image"] . '" class="img-responsive img-circle img-thumbnail" />';
echo '<h3><b>Name :</b> ' . $_SESSION['user_first_name'] . ' ' . $_SESSION['user_last_name'] . '</h3>';
echo '<h3><b>Email :</b> ' . $_SESSION['user_email_address'] . '</h3>';
echo '<h3><a href="logout.php">Logout</h3></div>';
} else {
echo '<div align="center">' . $login_button . '</div>';
}
?>
</div>
</div>
</body>
</html>