Twitter-API-PHP is a simple PHP wrapper library for Twitter API v1.1 calls. It has been designed for making the Twitter API as simple to use as possible for developers (on the server or on the client).
It supports:
- Application-Only Authentication (Oauth 2.0).
- Single-User OAuth (Oauth 1.0a).
- 3-legged Authorization (Oauth 1.0a).
To install via Composer, add the following to your composer.json file and run composer install
:
{
"require": {
"abhishekbhardwaj/twitter-api-php": "~1.1"
}
}
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~5.0",
"guzzlehttp/oauth-subscriber": "~0.2"
Some examples are located in the examples/
directory:
- appExample.php: Example of Application-Only Authentication
- userExample.php: Example of 3-legged Authorization
Detailed explanation can be found below:
- Create an instance of
Twitter\Config\AppCredentials
class with appropriate API keys.
$credentials = new AppCredentials($consumerKey, $consumerSecret);
- Create an instance of
Twitter\Client
with theAppCredentials
object you just created.
$client = new Client($credentials);
- Create an Application Connection to Twitter.
$app = $client->connect();
- When using Twitter as an application, you need to use a Bearer Token which can be generated by calling the
createBearerToken()
function.
$app->createBearerToken();
//to access bearer token (for storing in db for later use), you can use:
$app->getCredentials()->getBearerToken();
- Now you can send GET requests (since you can only GET as an application from Twitter) to Twitter. [Details available here!]{https://dev.twitter.com/oauth/application-only}
//getting @abhishekwebin's recent timeline.
$response = $app->get('users/show.json', array('screen_name' => 'abhishekwebin'));
- Since we use Guzzle internally to talk to Twitter, the
$response
object is an instance ofGuzzleHttp\Message\ResponseInterface
and thus, it has many helpful functions for example:
$response->getHeaders(); //gets the response headers
$response->getStatusCode(); //gets the status code
$response->json(); //parse response as JSON and return decoded data as assoc-array
$response->getBody(); //gets the response body
For more on Guzzle, refer to its official documentation here.
this section shows you how to login as a user
- create an instance of
Twitter\Config\UserCredentials
class with appropriate API keys.
$credentials = new UserCredentials($consumerKey, $consumerSecret, $callbackUrl);
- Create an instance of
Twitter\Client
with theUserCredentials
object you just created.
$client = new Client($credentials);
- Create a User Connection to Twitter.
$app = $client->connect();
- Get Authorization URL.
$redirectUrl = $app->getRedirectUrlForAuth();
-
Redirect the user to that URL.
-
Once the user logs in, Twitter will redirect the user back to the callbackUrl you specified in your app settings and in the credentials above.
-
The callback url will get a temporary oauthToken and oauthVerifier as query parameters. Use them to generate an access token (token and secret):
$accessTokens = $app->getAccessToken($oauthToken, $oauthVerifier);
-
$accessTokens
is an assoc-array which containsoauth_token
andoauth_token_secret
which basically never expire. You can store these in the db. -
Now you send either GET or POST requests to Twitter on behalf of the authenticated user to the endpoints.
//getting @abhishekwebin's recent timeline.
$response = $app->get('users/show.json', array('screen_name' => 'abhishekwebin'));
//post a new tweet: 'Test status!' as the currently authenticated users.
$response = $app->post('statuses/update.json', array('status' => 'Test status!'));
A maximum of 4 pictures can be attached to a tweet. To do so:
//list of pictures to upload. Input array items shouldn't be more than 4.
$media = $app->uploadMedia(array(
'{{FULL PATH TO PICTURE}}',
'{{FULL PATH TO PICTURE}}',
'{{FULL PATH TO PICTURE}}',
'{{FULL PATH TO PICTURE}}'
));
//post a new status
$response = $app->post('statuses/update.json', array(
'status' => 'Test status!',
'media_ids' => $media
));
The list of pictures that is passed on to uploadMedia()
can be URL's or absolute file paths.
- Change namespace to something other than
Twitter\*
- More documentation.
- November 12, 2014:
Version 1.1.2
- Parameters are now optional on GET requests. - November 9, 2014:
Version 1.1.*
- more stable and also lets you upload images to Twitter. - November 8, 2014:
Version 1.0.*
- very first version of the library, didn't have support for media uploads.
- All Twitter API Endpoints can be found here.
- All Twitter Authentication related stuff can be found here.
If you find any bugs, either post an issue or pull request are always welcome! :)
This library is licensed under the MIT License. See the LICENSE
file for more details!