Twitter OAuth-无效或过期的访问令牌 [英] Twitter OAuth - Invalid or expired access token

查看:103
本文介绍了Twitter OAuth-无效或过期的访问令牌的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用最新版本的 twitteroauth 分享帖子。下面是我的代码。

I am trying to share post using twitteroauth with latest version. Below is my code.

require APP."Vendor/twitteroauth-master/autoload.php"; // twitter v0.5.1 SDK

if(isset($_REQUEST['oauth_verifier'])) {

        $request_token = [];
        $request_token['oauth_token'] = $this->Session->read('twtr_oauth_token');
        $request_token['oauth_token_secret'] = $this->Session->read('twtr_oauth_token_secret');

        /* If denied, bail. */
        if (isset($_REQUEST['denied'])) {
            exit('Permission was denied. Please start over.');
        }

        /* If the oauth_token is not what we expect, bail. */
        if (isset($_REQUEST['oauth_token']) && $request_token['oauth_token'] !== $_REQUEST['oauth_token']) {
            $this->Session->write("twtr_oauth_token" , '');
            $this->Session->write("twtr_oauth_token_secret" , '');
            exit;
        }

        debug($request_token);

        /* Create TwitteroAuth object with app key/secret and token key/secret from default phase */
        $connection = new TwitterOAuth("KEY", "SECRET", $request_token['oauth_token'], $request_token['oauth_token_secret']);

        debug($connection);

        $content = $connection->get('account/verify_credentials');

        debug($content);

        /* Request access token from twitter */
        $access_token = $connection->oauth("oauth/access_token", array("oauth_verifier" => $_REQUEST['oauth_verifier']));

        /** Finally post things */
        $result = $connection->post("statuses/update", array("status" => "hello world"));

        if(isset($result->errors) && count($result->errors) > 0) {
            debug($connection->post("statuses/update", array("status" => "hello world")));
            exit;
        }

        $this->redirect("http://twitter.com");

    } else {

        $connection = new TwitterOAuth("KEY", "SECRET");

        /** Get Temp Token */
        $request_token = $connection->oauth('oauth/request_token', array('oauth_callback' => "https://180.211.99.162:9051/widgetapi/twitterOauth"));

        switch ($connection->getLastHttpCode()) {
            case 200:
                /** Write OAuth token and secret into session */
                $this->Session->write("twtr_oauth_token" , $request_token['oauth_token']);
                $this->Session->write("twtr_oauth_token_secret" , $request_token['oauth_token_secret']);

                /** Build Auth URL */
                $url = $connection->url('oauth/authorize', array('oauth_token' => $request_token['oauth_token']));

                /** Redirect */
                $this->redirect($url);
                break;
            default:
                /* Show notification if something went wrong. */
                echo 'Could not connect to Twitter. Refresh the page or try again later.';
        }
    }

当我尝试达到此目的时,我会无效或过期访问令牌。

When I try to achieve this I get invalid or expired access token.


调试信息



    /app/Controller/WidgetapiController.php (line 258)
array(
    'oauth_token' => 'AU549WSBbnxvibRcU5jzUzOwFAoUiTXs',
    'oauth_token_secret' => 'NRmkbByjjAPGQLJK06DaUauYfa38kpY6'
)
/app/Controller/WidgetapiController.php (line 261)
object(Abraham\TwitterOAuth\TwitterOAuth) {
    [protected] timeout => (int) 5
    [protected] connectionTimeout => (int) 5
    [protected] decodeJsonAsArray => false
    [protected] userAgent => 'TwitterOAuth (+https://twitteroauth.com)'
    [protected] proxy => array()
    [private] response => object(Abraham\TwitterOAuth\Response) {
        [private] apiPath => null
        [private] httpCode => (int) 0
        [private] headers => array()
        [private] body => array()
        [private] xHeaders => array()
    }
    [private] bearer => null
    [private] consumer => object(Abraham\TwitterOAuth\Consumer) {
        key => 'KEY'
        secret => 'SECRET'
        callbackUrl => null
    }
    [private] token => object(Abraham\TwitterOAuth\Token) {
        key => 'AU549WSBbnxvibRcU5jzUzOwFAoUiTXs'
        secret => 'NRmkbByjjAPGQLJK06DaUauYfa38kpY6'
    }
    [private] signatureMethod => object(Abraham\TwitterOAuth\HmacSha1) {

    }
}
/app/Controller/WidgetapiController.php (line 263)
object(stdClass) {
    errors => array(
        (int) 0 => object(stdClass) {
            code => (int) 89
            message => 'Invalid or expired token.'
        }
    )
}
/app/Controller/WidgetapiController.php (line 271)
object(stdClass) {
    errors => array(
        (int) 0 => object(stdClass) {
            code => (int) 89
            message => 'Invalid or expired token.'
        }
    )
}

我无法找出问题!知道这里有什么问题吗?

I am not able to figure out the issue! Any idea whats wrong here?

推荐答案

一旦回调,使用新的访问令牌再次初始化类

/* Request access token from twitter */
$access_token = $connection->oauth("oauth/access_token", array("oauth_verifier" => $_REQUEST['oauth_verifier']));

$connection = new TwitterOAuth("KEY", "SECRET", $access_token['oauth_token'], $access_token['oauth_token_secret']); 

这篇关于Twitter OAuth-无效或过期的访问令牌的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆