Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This was the tutorial I was using:

http://net.tutsplus.com/tutorials/php/how-to-authenticate-users-with-twitter-oauth/

Everything seems fine up until the very last step which is to get the access token, the errors I get are:

Notice: Undefined index: oauth_token in /var/www/vhosts/opticalexpress.com/httpdocs/facebook/2011/ambassador-referral/classes/twitteroauth.php on line 118

Notice: Undefined index: oauth_token_secret in /var/www/vhosts/opticalexpress.com/httpdocs/facebook/2011/ambassador-referral/classes/twitteroauth.php on line 118

As far as I can see, everything should work :/

This is the code:

require_once('classes/twitteroauth.php');
session_start();

// The TwitterOAuth instance
$twitteroauth = new TwitterOAuth('xxxx', 'xxxx');
// Requesting authentication tokens, the parameter is the URL we will be redirected to
$request_token = $twitteroauth->getRequestToken('http://www.domain.com/tweet.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']);
    echo '<a href="'.$url.'">authorise</a>';
} 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.');
}

if(!empty($_GET['oauth_verifier']) && !empty($_SESSION['oauth_token'])){
    // We've got everything we need

    // TwitterOAuth instance, with two new parameters 
    $twitteroauth = new TwitterOAuth('xxxx', 'xxxx', $_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');
    // Print user's info
    //print_r($user_info);
} else {
    // Something's missing, go back to square 1
    echo 'something missing';
}

I am going absolutely crazy trying to get this to work, any ideas?

share|improve this question

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.