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>';
?>
ローカルホストでは機能しますが、Webサーバーでは機能しません。
編集:古いバージョンのLightOpenIDを見つけましたが、動作します。