Download the PHP package philo/laravel-twitter without Composer
On this page you can find all versions of the php package philo/laravel-twitter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download philo/laravel-twitter
More information about philo/laravel-twitter
Files in philo/laravel-twitter
Package laravel-twitter
Short Description A simple Laravel 4 service provider for including the TwitterOAuth library.
License BSD
Homepage https://github.com/PhiloNL/Laravel-Twitter
Informations about the package laravel-twitter
TwitterOAuth Service Provider for Laravel 4
A simple Laravel 4 service provider for including the TwitterOAuth library.
Installation
The TwitterOAuth Service Provider can be installed via Composer by requiring the "philo/laravel-twitter": "dev-master"
package in your project's composer.json.
Next you will need to publish the package config:
php artisan config:publish --path=philo/twitter philo/twitter
You can setup your CONSUMER_KEY and CONSUMER_SECRET inside app/config/packages/philo/twitter/config.php
.
Finaly you need to register the service provider and the alias. Look for providers
inside app/config/app.php register it.
And do the same for the alias:
Usage
In order to access the API you need your user to authorize your application. To do so the user needs to be redirected to Twitter.
Once the user has authorized your app he/she is going to be redirect back to the callback URL you defined in your Twitter application settings. You need to register that route and catch the verifier token:
Twitter will respond with the information that looks like:
You should store this information in order to access the authorized user in the future.
Please look at the source of /vendor/tijsverkoyen/TijsVerkoyen/Twitter/Twitter.php
for all available methods.
Example
All versions of laravel-twitter with dependencies
illuminate/support Version 4.x
tijsverkoyen/twitteroauth Version dev-master