我正在为我的网站使用 Google OpenId API。我需要使用 Google OpenId API 实现强制注销概念。
下面的代码我已经尝试过了,但我无法获得使用 openId 强制注销的实际解决方案。
如何注销 Google OpenId 中的当前登录会话?
<?php
session_start();
if (isset($_SESSION['id']))
{
// Redirection to login page.
header("location: home.php");
}
if (array_key_exists("login", $_GET)) {
$oauth_provider = $_GET['oauth_provider'];
if ($oauth_provider == 'google') {
$url='https://www.google.com/accounts/Logout';
//After clearing a session it is redirected to login-google.php
$redirectUrl="login-google.php";
$redirectUrl = '&return='.$redirectUrl;
$finalUrl = $url . $redirectUrl;
echo("<script>top.location.href='".$finalUrl."'</script>");
}
}
?>