By endroid
This library helps making requests to the Twitter API, without having to bother too much about OAuth headers and building requests. The only things you need are the keys which you can find in the developer console.
Use Composer to install the library.
$ composer require endroid/twitter
Register your application at http://apps.twitter.com/app
<?php
use Endroid\Twitter\Twitter;
// If you want to fetch the Twitter API with "application only" authentication, $accessToken and $accessTokenSecret are optional
$twitter = new Twitter($consumerKey, $consumerSecret, $accessToken, $accessTokenSecret);
// Retrieve the user's timeline
$tweets = $twitter->getTimeline(array(
'count' => 5
));
// Or retrieve the timeline using the generic query method
$response = $twitter->query('statuses/user_timeline', 'GET', 'json', $parameters);
$tweets = json_decode($response->getContent());
You can use EndroidTwitterBundle
to enable this service in your Symfony
application or to expose the Twitter API through your own domain.
Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility breaking changes will be kept to a minimum but be aware that these can occur. Lock your dependencies for production and test your code when upgrading.
This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code.