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.

I am trying to call following Twitter's API to get a list of followers for a user.

http://api.twitter.com/1.1/followers/ids.json?cursor=-1&screen_name=username

And I am getting this error message in response.

{
    code = 215;
    message = "Bad Authentication data";
}

I can't seem to find the documentation related to this error code. Anyone has any idea about this error?

share|improve this question
A lot of us are in the same boat. Were you able to resolve this? I'd love to see a solution for 1.1 since 1.0 is being deprecated. – RCNeil Oct 12 '12 at 14:16
1  
Unfortunately I've still not been able to find a suitable solution. I am working on version 1 for now. But I will definitely post it here when I do. And if you get it before that, please do share... – Dip Dhingani Oct 15 '12 at 5:31
Has anyone noticed on the Twitter oauth tool that a URL is generated with "/1.1" in it, but the cURL command says "oauth_version=1.0"? dev.twitter.com/apps/XXXXXX/oauth?nid=10364 – systemblogger Dec 9 '12 at 15:50

7 Answers

The url with /1.1/ in it is correct, it is the new Twitter API Version 1.1.

But you need an application and authorize your application (and the user) using oAuth.

Read more about this on the Twitter Developers documentation site :)

share|improve this answer
is it a error of version api or a error of auth? – loldop Dec 13 '12 at 9:15
1  
Referencing a documentation site doesn't really answer the question. – moluv00 Jun 14 at 18:01

Twitter 1.1 does not work with that syntax (when I wrote this answer). Needs to be 1, not 1.1. This will work:

http://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=username

UPDATE: Twitter API 1 is now deprecated. Refer to above answer.

share|improve this answer
2  
Yeah that's correct. But that's because Twitter's Documentation suggested me to do so. (dev.twitter.com/docs/api/1/get/followers/ids). They said that version 1 is deprecated and I need to move to 1.1. Version 1 works for sure for this web service. But I was confused why 1.1 isn't working for me? – Dip Dhingani Oct 2 '12 at 5:20
5  
Version 1 will be deprecated in 6 months counting from march 2013 so I'd go for version 1.1 – K. Weber Oct 2 '12 at 5:38
Testing different OAuth libraries I stick to Twitter Async, just changing this line protected $apiVersion = '1.1'; in file EpiTwitter.php works fine for Twitter API version 1.1 – K. Weber Oct 2 '12 at 10:30
1  
Twitter API 1 is deprecated – qasimzee Jun 13 at 9:57
The Twitter REST API v1 is no longer active. Please migrate to API v1.1. dev.twitter.com/docs/api/1.1/overview. – Sazzad Hossain Khan Jun 14 at 8:43

You need to send customerKey and customerSecret to Zend_Service_Twitter

$twitter = new Zend_Service_Twitter(array(
                'consumerKey' => $this->consumer_key,
                'consumerSecret' => $this->consumer_secret,
                'username' => $user->screenName,
                'accessToken' => unserialize($user->token)
));
share|improve this answer

Be sure that you have read AND write access for application in twitter

share|improve this answer

The answer by Gruik worked for me in the below thread.

{Excerpt | Zend_Service_Twitter - Make API v1.1 ready}

with ZF 1.12.3 the workaround is to pass consumerKey and consumerSecret in oauthOptions option, not directrly in the options.

    $options = array(
        'username' => /*...*/,
        'accessToken' => /*...*/,
        'oauthOptions' => array(
            'consumerKey' => /*...*/,
            'consumerSecret' => /*...*/,
        )
    );
share|improve this answer

The only solution I've found so far is:

  • Create application in twitter developer panel
  • Authorize user with your application (or your application in user account) and save "oauth_token" and "oauth_token_secret" which Twitter give you. Use TwitterOAuth library for this, it's pretty easy, see examples with comes with library.
  • Using this tokens you can make authenticated requests on behalf of user. You can do it with the same library.

    // Arguments 1 and 2 - your application static tokens, 2 and 3 - user tokens, received from Twitter during authentification  
    $connection = new TwitterOAuth(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET, $tokens['oauth_token'], $tokens['oauth_token_secret']);  
    $connection->host = 'https://api.twitter.com/1.1/'; // By default library uses API version 1.  
    $friendsJson = $connection->get('/friends/ids.json?cursor=-1&user_id=34342323');  
    

This will return you list of user's friends.

share|improve this answer

This might help someone who use Zend_Oauth_Client to work with twitter api. This working config:

$accessToken = new Zend_Oauth_Token_Access();
$accessToken->setToken('accessToken');
$accessToken->setTokenSecret('accessTokenSecret');

$client = $accessToken->getHttpClient(array(
    'requestScheme' => Zend_Oauth::REQUEST_SCHEME_HEADER,
    'version' => '1.0', // it was 1.1 and I got 215 error.
    'signatureMethod' => 'HMAC-SHA1',
    'consumerKey' => 'foo',
    'consumerSecret' => 'bar',
    'requestTokenUrl' => 'https://api.twitter.com/oauth/request_token',
    'authorizeUrl' => 'https://api.twitter.com/oauth/authorize',
    'accessTokenUrl' => 'https://api.twitter.com/oauth/access_token',
    'timeout' => 30
));

It look like twitter api 1.0 allows oauth version to be 1.1 and 1.0, where twitter api 1.1 require only oauth version to be 1.0.

P.S We do not use Zend_Service_Twitter as it does not allow send custom params on status update.

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.