AbrahamWilliamのTwitteroAuthライブラリを使用しています。
以下は私のコードです:
if (isset($_REQUEST['oauth_token'])){
print_r($_SESSION);
exit;
}
/* Build TwitterOAuth object with client credentials. */
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);
/* Get temporary credentials. */
$request_token = $connection->getRequestToken(OAUTH_CALLBACK);
/* Save temporary credentials to session. */
$_SESSION['oauth_token'] = $token = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];
/* If last connection failed don't display authorization link. */
switch ($connection->http_code) {
case 200:
/* Build authorize URL and redirect user to Twitter. */
$url = $connection->getAuthorizeURL($token);
print "<script>self.location='$url';</script>";
break;
default:
/* Show notification if something went wrong. */
echo 'Could not connect to Twitter. Refresh the page or try again later.';
return;
}
リダイレクトの直前に$_SESSIONを確認すると、$_SESSIONがそこにあります。リダイレクトが発生すると、$ _ REQUEST ['oauth_token']が設定されますが(これを確認しました)、$_SESSIONは存在しなくなります。
私のブラウザはCookieとサードパーティのCookieを受け入れるように設定されています。何か案は?