twitter oauth :geting undefined index: oauth_token_secret in

北城以北 提交于 2019-12-03 21:58:00

In your twitter application setting "Callback URL", add any callback url, for ex:
https://dev.twitter.com/

Otherwise twitter will consider your application as desktop application and you will get error:

Desktop applications only support the oauth_callback value 'oob'

and your php script will give errors like:

Notice: Undefined index: oauth_token in twitteroauth.php on line 80

But by setting a callback url from php script it will overwrite the default placeholder of callback url and consider your application as a web based application.

I had the same error:

Notice: Undefined index: oauth_token in /web/htdocs/www.xxx.com/home/private/libraries> /twitteroauth/twitteroauth.php on line 118

Notice: Undefined index: oauth_token_secret in /web/htdocs/www.xxx.com/home/private/libraries/twitteroauth/twitteroauth.php on line 118

Debugging on line what the error specified:

function getAccessToken($oauth_verifier = FALSE) {
     // .... code .... //

     $token = OAuthUtil::parse_parameters($request);
     $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
     exit(print_r($token));

     // ... code ....//
}

I found this:

Array ( [ "1.0" encoding="UTF-8"?> Required oauth_verifier parameter not provided /oauth/access_token .......

After i read some issue on the web and find the solution. In my code i must pass a oauth_verifier:

 $request = $oauth->getAccessToken($_GET['oauth_verifier']);

Hope i help someone, the problem was that For OAuth 1.0a compliance 'oauth_verifier' is required!

Resource: https://dev.twitter.com/discussions/16443#comment-36618

Apologize for bad English.

Please check php companents:

  • Curl SSL
  • Open SSL
  • hash_hmac
diEcho

@Bharanikumar
AFAIK first you should call the function

$request_token = $oauth->getRequestToken();  

then u will get

$request_token['oauth_token']; and $request_token['oauth_token_secret']; 

then do below

 $URL = $oauth->getAuthorizeURL($request_token);

 $oauth = new TwitterOAuth('YOUR_CONSUMER_KEY', 'YOUR_CONSUMER_SECRET',  $request_token['oauth_token'],$request_token['oauth_token_secret']);  

 $access = $oauth->getAccessToken(NULL, $_GET['pin']);
 $accessToken = $access ['oauth_token'];
 $accessTokenSecret = $access ['oauth_token_secret'];

& then apply your code

if ($pin)

Hope this will help you..

The problem is that there is an error in the request so you don't get oauth_token_secret in the respond from Twitter. Check out a simple but elaborate solution here.. http://errorbank.blogspot.com/2012/07/php-twitter-undefined-index.html

This issue was solved for me by setting a Callback URL in my twitter application settings. http://dev.twitter.com

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!