Skip to content

VincentCATILLON/Twitter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter

By endroid

Build Status Latest Stable Version Total Downloads

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;

$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 compatible 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.

Packages

No packages published

Languages

  • PHP 100.0%