0

我已经下载了 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,它可以工作。

4

1 回答 1

0

request_streams() 方法存在问题,我通过注释第 352 行并将其替换为 return $data; 解决了它。

//return file_get_contents($url, false, $context);
return $data;
于 2012-11-20T17:42:45.043 回答