我正在尝试创建使用 openid 的登录系统,我使用了以下代码
<?php
require 'openid.php';
try{
$openid = new LightOpenID('www.mydomain.com');
if(!$openid->mode){
if(isset($_GET['login'])){
if(isset($_POST["google"])){
$openid->identity = 'https://www.google.com/accounts/o8/id';
}
elseif(isset($_POST["yahoo"])){
$openid->identity = 'https://me.yahoo.com';
}
else{ //do nothing }
$openid->required = array('namePerson/friendly', 'contact/email');
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button id="google" name="google">Login with Google</button>
<button id="yahoo" name="yahoo">Login with Yahoo</button>
</form>
<?php
}
else{
echo 'User ' . ($openid->validate() ? ' has ' : 'has not ') . 'logged in.';
}
} catch(ErrorException $e) {
echo $e->getMessage();
}
?>
这段代码工作正常。但我的问题是,当用户使用 google 或 yahoo 进行身份验证时,他们会使用添加到 url 的参数(即使用 GET 方法)重定向回来。有什么方法可以隐藏 url 中的数据(使用 POST 方法)。
提前致谢。