/Twitter

Endroid Twitter Client

Primary LanguagePHPMIT LicenseMIT

Endroid Twitter

By endroid

Build Status Latest Stable Version Total Downloads

Twitter 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.

<?php

$twitter = new Endroid\Twitter\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());

Symfony

You can use EndroidTwitterBundle to enable this service in your Symfony application or to expose the Twitter API through your own domain.

License

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.