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.

So first things first, here's the code:

$consumer_key = '*';
$consumer_secret = '*';

$twitterObj = new EpiTwitter($consumer_key, $consumer_secret);
$oauth_token = $_GET['oauth_token'];

if($oauth_token == ""){
    echo "EFF";
    $url = $twitterObj->getAuthenticateUrl();
    echo "<div style='width:200px;margin-top:200px;margin-left:auto;margin-right:auto'>";
    echo "<a href='$url'>Sign In with Twitter</a>";
    echo "</div>";
}else{
    $twitterObj->setToken($oauth_token);
    $token = $twitterObj->getAccessToken();
    $twitterObj->setToken($token->oauth_token,  $token->oauth_token_secret);
    $_SESSION['ot'] = $token->oauth_token;
    $_SESSION['ots'] = $token->oauth_token_secret;
    $twitterInfo = $twitterObj->get('/account/verify_credentials.json');
    $res = $twitterInfo->response; //valid session
    echo "<strong>".$res['screen_name'] . " is Connected!</strong><br/>";
}

It uses the latest EpiTwitter library. For some reason, every time I try to run the script I get:

Fatal error: Uncaught exception 'EpiOAuthUnauthorizedException' in /var/www/twt/EpiOAuth.php:432 Stack trace: #0 /var/www/twt/EpiOAuth.php(404): EpiOAuthException::raise(Object(EpiCurlManager), false) #1 /var/www/twt/EpiOAuth.php(45): EpiOAuthResponse->__get('oauth_token') #2 /var/www/twt/twt.php(18): EpiOAuth->getAuthenticateUrl() #3 {main} thrown in /var/www/twt/EpiOAuth.php on line 432

share|improve this question

1 Answer

https://github.com/jmathai/twitter-async/issues/73

I found if i did, the below, the errors went away.

try{ 
 $twitterInfo = $twitterObj->get('/account/verify_credentials.json');
 $res = $twitterInfo->response; //valid session
} catch(EpiTwitterException $e){
 // this catches all of the EpiTwitter* exceptions
}
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.