私は自分のウェブサイトで Linkedin oauth を使用しています。Linkedin oAuth API を使用して Force Logout Concept を実装する必要があります。
以下のコードを試してみましたが、Linkedin oauth を使用した強制ログアウトの実際の解決策を得ることができません。
<?php
include_once "linkedin.php";
# First step is to initialize with your consumer key and secret. We'll use an out-of-band oauth_callback
$linkedin = new LinkedIn($config['linkedin_access'], $config['linkedin_secret'], $config['callback_url'] );
//$linkedin->debug = true;
# Now we retrieve a request token. It will be set as $linkedin->request_token
$linkedInSession = $linkedin->getRequestToken();
if(empty($linkedInSession))
{
$_SESSION['requestToken'] = serialize($linkedin->request_token);
$url = $linkedin->generateAuthorizeUrl();
$loginUrl = 'https://www.linkedin.com/secure/login?session_full_logout=&trk=hb_signout';
echo("<script>top.location.href='".$loginUrl."'</script>");
}
else
{
echo("<script>top.location.href='".$url."'</script>");
}
?>
リンクされたアカウントで現在ログインしているセッションをログアウトするにはどうすればよいですか?