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 currently using this simple function to get data from twitter API but my rate limit is 150 as i am not using OAuth:

public function getTweetData($idTweet){
    $url =  'https://api.twitter.com/1/statuses/show/'.$idTweet.'.json';
    $json = file_get_contents( $url );
    return json_decode($json, true);    
}

I was wondering how can i authenticate my app to get the 350 limit rate. I am currently using CakePHP framework and i am using this plugin called "CakePHP-2.x-Twitter-Plugin" to work with the twitter API: https://github.com/mishudark/CakePHP-2.x-Twitter-Plugin

They say that "This plugin does not support the "Twitter for Websites" Features (https://dev.twitter.com/docs/twitter-for-websites) like follow buttons or direct authentication."

So, is what i am looking for, a direct authentication? If so, i wouldn't be able to work with this plugin, so, which library would you recommend me for PHP to make this auth call?

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

Im not sure how it would work with your plugin, but I downloaded the oAuth.zip from here. This answer also shows the code to authenticate each time. His $content = $connection shows how to get twitter to do things like update etc

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.