PHPackages                             corbanb/freebird-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. corbanb/freebird-php

ActiveLibrary[API Development](/categories/api)

corbanb/freebird-php
====================

Twitter API v1.1 Application only authoization library

v0.2.3(11y ago)148.6k6MITPHPPHP &gt;=5.3.0

Since Jun 5Pushed 10y ago2 watchersCompare

[ Source](https://github.com/corbanb/freebird-php)[ Packagist](https://packagist.org/packages/corbanb/freebird-php)[ Docs](https://github.com/corbanb/freebird-php)[ RSS](/packages/corbanb-freebird-php/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (3)Versions (7)Used By (0)

Freebird - Twitter App Only Auth
================================

[](#freebird---twitter-app-only-auth)

Welcome
-------

[](#welcome)

**Freebird** is a simple library designed to make connecting to Twitter's API as simple as possible on the server. Freebird was written to make life as easy as possible on developers to connect thier application servers to Twitter's API. Freebird uses the Application Only Authentication methodology, to find out more on this you can view the docs [here](https://dev.twitter.com/docs/auth/application-only-auth) from the offical Twitter API website.

Installing via Composer
-----------------------

[](#installing-via-composer)

The recomended way to install **Freebird** is through [Composer](http://getcomposer.org/).

```
# Install Composer
curl -sS https://getcomposer.org/installer | php

# Add Freebird as a dependency
php composer.phar require corbanb/freebird-php:~0.2.4

```

After installing, you need to require Composer's autoloader:

```
require 'vendor/autoload.php';

```

Freebird Dependencies
---------------------

[](#freebird-dependencies)

```
"php": ">=5.3.0"
"guzzle/guzzle": "3.1.*"

```

Basic Usage
-----------

[](#basic-usage)

Once installed you can easily access all of the Twitter API endpoints supported by [Application Only Authentication](https://dev.twitter.com/docs/auth/application-only-auth). You can view those enpoints [here](https://dev.twitter.com/docs/rate-limiting/1.1/limits).

```
