despark/laravel-social-feeder

Social feeder for laravel. With this you can get feed from facebook page, twitter account or instragram
134 13
Install
composer require despark/laravel-social-feeder
Latest Version:v1.9
PHP:>=5.4.0
License:MIT
Last Updated:Feb 18, 2015
Links: GitHub  ·  Packagist
Maintainer: ymihaylov

Social Feeder for Laravel

Social Feeder is interface to social APIs. With this package you can get latest posts/tweets/photos from Facebook, Twitter, Instagram and save it to database to show it in your application.

Installation

Open composer.json file of your project and add the following to the require array:

"despark/laravel-social-feeder": "~1.2"

Now run composer update to install the new requirement.

Once it's installed, you need to register the service provider in app/config/app.php in the providers array:

'providers' => array(
  ...
  'Despark\LaravelSocialFeeder\LaravelSocialFeederServiceProvider',
);

Publish the config file: php artisan config:publish despark/laravel-social-feeder

Then execute migration with the following command

php artisan migrate --package="despark/laravel-social-feeder"

This will create new table social_posts. In this table package store the posts from feeds.

Related Packages

hamzahassanm/laravel-social-auto-post

Laravel social media auto post package - Complete solution for posting to 8 majo...

455 14
lu1ssuarez/social-sdk-wrapper

Facebook SDK, Twitter API, Instagram Api wrapper for PHP

10 1
thomaswelton/laravel-oauth

Laravel package for the simplification and integration of many of your users mos...

961 41
ryannielson/shareable

A Laravel 4 package to make it easy to add social sharing buttons to your applic...

2,771 22
despark/ignicms

Administrative interface builder for Laravel 5.1

2,471 21