我目前正在尝试为大学的小型网站实施 openID。我对此很陌生,并跟进了相关文章。我已经下载了 lightopenId 并将文件夹上传到我的网络服务器。我的学校有谷歌托管他们的电子邮件服务,所以典型的电子邮件地址是:像这样studentlastname@myuniversity.edu
。我们可以通过mail.google.com
或谷歌专门为我们的登录设计的自定义网页登录mail.google.com/a/oakland.edu/
。
$openid->identity = 'https://www.google.com/accounts/o8/id';
我可以将用户定向到自定义大学谷歌托管页面进行身份验证,而不是将用户重定向到一般用户?
给我错误:
未找到 OpenID 服务器
http://mail.google.com/a/oakland.edu/accounts/o8/id
openid.php:
<?
<?php
require 'openid.php';
try {
# Change 'localhost' to your domain name.
$openid = new LightOpenID('http://webprolearner.ueuo.com');
if(!$openid->mode) {
if(isset($_GET['login'])) {
$openid->identity = 'mail.google.com/a/oakland.edu/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.';
}
} catch(ErrorException $e) {
echo $e->getMessage();
}