我正在尝试使用Twitter Oauth登录。

index.php

<?php
require ("twitteroauth/twitteroauth.php");
session_start();

// The TwitterOAuth instance
$twitteroauth = new TwitterOAuth('00000000000000000', '0000000000000000000000000000000');

// Requesting authentication tokens, the parameter is the URL we will be redirected to
$request_token = $twitteroauth->getRequestToken('http://bakasura.in/twitter/twitter_oauth.php');

// Saving them into the session
$_SESSION['oauth_token'] = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];

// If everything goes well..
if($twitteroauth->http_code==200){
    // Let's generate the URL and redirect
    $url = $twitteroauth->getAuthorizeURL($request_token['oauth_token']);
    header('Location: '. $url);
} else {
    // It's a bad idea to kill the script, but we've got to know when there's an error.
    die('Something wrong happened.');
}

?>

一旦页面加载,当我单击时,我将带我到授权页面 http://bakasura.in/twitter/twitter_oauth.php

<?php
require ("twitteroauth/twitteroauth.php");

if(!empty($_GET['oauth_verifier']) && !empty($_SESSION['oauth_token']) && !empty($_SESSION['oauth_token_secret'])){

    // We've got everything we need
    echo "Authorized";

} else {

    // Something's missing, go back to square 1
    //header('Location: twitter_login.php');
    echo "Not Authorized";

}
?> 

它说“未授权”

你可以在这里尝试 http://bakasura.in/twitter/

有帮助吗?

解决方案

您没有在第二页中开始会话。只要您不致电session_start(),您的会话变量就不可用

一些PHP设置已配置了他们的php.ini以自动启动您的会话,但是当我查看您的服务器设置时,我看到您没有在第二页上为您的PHP会话发送cookie标头,因此我很确定您的您的第二页没有启动会话...

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top