twitter oauth :geting undefined index: oauth_token

2019-04-02 17:41发布

Hi am trying to post tweets using oauth (PHP)

i created the application in my twitter account ,

i executed some open source script but that produce the below error,

Notice: Undefined index: oauth_token_secret in

How to fix this issue

my snippet

require_once('twitterOAuth/twitterOAuth.php');
require_once('twitterOAuth/OAuth.php');


$consumer_key='q3fsdfsdfsdw';
$consumer_secret='rfsdfsdfsdfsdfdsfsdL';
$request_token='http://twitter.com/oauth/request_token';
$request_token_secret='5454545';
$oauth = new TwitterOAuth($consumer_key, $consumer_secret,
$request_token, $request_token_secret);

// Ask Twitter for an access token (and an access token secret)
$request = $oauth->getAccessToken();

$access_token = $request['amp;oauth_token'];
$access_token_secret = $request['oauth_token_secret'];=======> HERE AM GETTING TROUBLE

function getAccessToken($token = NULL, $pin = NULL)
{
    if ($pin)
        $r = $this->oAuthRequest($this->accessTokenURL(),
            array("oauth_verifier" => $pin));
    else
        $r = $this->oAuthRequest($this->accessTokenURL());

    $token = $this->oAuthParseResponse($r);
    $this->token = new OAuthConsumer($token['oauth_token'],
        $token['oauth_token_secret']);

    return $token;
}

My complete Error Here

Notice: Undefined index: oauth_token_secret in E:\wamp\www\source\oauth\twitterOAuth\twitteroauth.php on line 118

Notice: Undefined index: oauth_token_secret in E:\wamp\www\source\oauth\bharani.php on line 18

8条回答
2楼-- · 2019-04-02 18:27

I'm same this bug. Because I didn't config OAUTH_CALLBACK. Hope helpful for you.

查看更多
姐就是有狂的资本
3楼-- · 2019-04-02 18:36

It just a Notice.

You didn't defined that array index or something. Paste your full error and the lines around where php writes this notice.

Another way: You can disable with this code:

// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);

http://www.php.net/manual/en/function.error-reporting.php

查看更多
登录 后发表回答