我不想编写自己的登录函数,所以我想使用 openId。我找到了库 lightopenid 并对 google-example 文件进行了一些修改,它看起来像这样:
<?php
session_start();
# Logging in with Google accounts requires setting special identity, so this example shows how to do it.
require 'openid.php';
try {
# Change 'localhost' to your domain name.
$openid = new LightOpenID('127.0.0.1');
if(!$openid->mode) {
if(isset($_GET['login'])) {
$openid->identity = 'https://www.google.com/accounts/o8/id';
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button>Login with Google</button>
</form>
<?php
} elseif($openid->mode == 'cancel') {
echo 'User has canceled authentication!';
} else {
echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . 'logged in.';
if ($openid->validate()) {
$_SESSION['auth'] = true;
}
}
} catch(ErrorException $e) {
echo $e->getMessage();
}
所以我在那里添加了一个 $_SESSION 东西......现在想我可以在每个受保护页面的顶部使用一些代码,如下所示:
<?php session_start();
if (!$_SESSION['auth']) { exit; } ?>
我希望以正确的方式完成此操作,以便一切安全等等。你会这样做还是我做错了什么?我可能会使用 cookie 来代替...