我已经下载了 LightOpenID (http://gitorious.org/lightopenid) 并且它工作但几天前停止了。我的代码:
<?php
require 'openid.php';
try {
if(!isset($_GET['openid_mode'])) {
if(isset($_GET['login'])) {
$openid = new LightOpenID('my-domain.com');
$openid->identity = 'https://www.google.com/accounts/o8/id';
$openid->required = array('namePerson/friendly', 'contact/email');
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button>Login with Google</button>
</form>
<?php
} elseif($_GET['openid_mode'] == 'cancel') {
echo 'User has canceled authentication!';
} else {
$openid = new LightOpenID('my-domain.com');
echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . 'logged in.';
}
} catch(ErrorException $e) {
echo $e->getMessage();
}
echo '<pre>'.print_r($openid,true).'</pre>';
?>
在 localhost 它可以工作,但不能在 Web 服务器上工作。
编辑:我找到了旧版本的 LightOpenID,它可以工作。