Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add twitter logins to a PHP script I have. I'm using http://github.com/abraham/twitteroauth PHP

After being re-directed back from the twitter website, I have posted the credentials I get to my PHP script using curl(I'm trying to simulate a normal login). The script accepts my credentials and generates the welcome page for logged in members.

When I redirect my page to the index.php of my script, it shows me the main page, but then it keeps reloading the script. I'm at the main page but the page keeps reloading itself and is unusable.

I've reviewed my code several times, but I can't figure what I'm doing wrong. Any pointers would be greatly appreciated.

session_start();
# Create the PHP/CURL session
$ch = curl_init();
# Define the login form data
$target = ADDR."index.php";
$form_data="redirect_url=%2Fowncloud%2F&user=".$_GET["login"]."&password=".$_GET["pass"]."&sectoken=".$_SESSION['key'];

curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_REFERER, ADDR);
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt"); // Tell PHP/CURL where to write cookies
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt"); // Tell PHP/CURL which cookies to send
$page = curl_exec($ch);

curl_close($ch);
session_destroy();

header('Location: http://localhost/owncloud/');

Edit: what follows are snippets from my redirect page

session_start(); 

// if(!empty($_GET['oauth_verifier']) && !empty($_SESSION['oauth_token']) && !empty($_SESSION['oauth_token_secret'])){  
    // // We've got everything we need  
// } else {  
    // // Something's missing, go back to square 1  
    // header('Location: connect.php');  
// }

// TwitterOAuth instance, with two new parameters we got in twitter_login.php  
$twitteroauth = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);  
// Let's request the access token  
$access_token = $twitteroauth->getAccessToken($_GET['oauth_verifier']); 
// Save it in a session var 
$_SESSION['access_token'] = $access_token; 
// Let's get the user's info  
$user_info = $twitteroauth->get('account/verify_credentials'); 

if(isset($user_info->error)){  
    // Something's wrong, go back to square 1  
    header('Location: connect.php');
} else { 
    // Let's find the user by its ID  
    $query = "SELECT * FROM users WHERE oauth_provider = :oauth_provider AND oauth_uid = :oauth_uid";
    $query_params = array( ':oauth_provider' => 'twitter', ':oauth_uid' => $user_info->id );

    try{            
        $stmt = $db->prepare($query); 
        $result = $stmt->execute($query_params); 
    } 
    catch(PDOException $ex){ 
        die("Failed to run query: " . $ex->getMessage()); 
    } 

    $row = $stmt->fetch();

    if(empty($row)){
        // If not, let's add it to the database
        $query = "INSERT INTO users (oauth_provider, oauth_uid, username, oauth_token, oauth_secret) VALUES (?, ?, ?, ?, ?)";
        $query_params = array('twitter', $user_info->id, $user_info->screen_name, $access_token['oauth_token'], $access_token['oauth_token_secret']);
        $stmt = $db->prepare($query); 
        $result = $stmt->execute($query_params);

        $query = "SELECT * FROM users WHERE id = :id";
        $query_params = array( ':id' => $stmt->lastInsertId() );
        $stmt = $db->prepare($query); 
        $result = $stmt->execute($query_params);

        //createUser($user_info->screen_name, $user_info->id);          
    }
    else{
        // Update the tokens
        $query = "UPDATE users SET oauth_token = ? oauth_secret = ? WHERE oauth_provider = ? AND oauth_uid = ?"; 
        $query_params = array( $access_token['oauth_token'], $access_token['oauth_token_secret'], 'twitter', $user_info->id);

    }        

}
    //session_destroy();
    //$res = loginUser($user_info->screen_name, $user_info->id);
    //echo "We have ".$_SESSION['key'];
    //header('Location: login.php?login='.$user_info->screen_name.'&pass='.$user_info->id);

?>

# Create the PHP/CURL session
$ch = curl_init();


$target = ADDR."index.php";
$form_data="redirect_url=%2Fowncloud%2F&user=".$a."&password=".$b."&sectoken=".$_SESSION['key'];

curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_REFERER, ADDR);
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt"); // Tell PHP/CURL where to write cookies
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt"); // Tell PHP/CURL which cookies to send
$page = curl_exec($ch); 

}

share|improve this question
can you post the relevant code from both pages? (your index.php and your redirect page) – mmiles Oct 12 '12 at 12:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.