Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 2.33 KB

README.md

File metadata and controls

62 lines (41 loc) · 2.33 KB

Twitter

By endroid

Latest Stable Version Build Status Total Downloads Monthly Downloads License

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.

Installation

Use Composer to install the library.

$ composer require endroid/twitter

Get consumer access key and token from Twitter

Register your application at http://apps.twitter.com/app

Usage

<?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());

Symfony

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

Versioning

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.

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.