https://github.com/codler/laravel-facebook-sdk
Laravel Bundle - Facebook SDK
https://github.com/codler/laravel-facebook-sdk
Last synced: 9 months ago
JSON representation
Laravel Bundle - Facebook SDK
- Host: GitHub
- URL: https://github.com/codler/laravel-facebook-sdk
- Owner: codler
- Created: 2012-02-25T18:01:36.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-01-22T22:06:36.000Z (about 13 years ago)
- Last Synced: 2025-03-29T23:22:45.465Z (10 months ago)
- Language: PHP
- Homepage: http://bundles.laravel.com/bundle/facebook-sdk
- Size: 253 KB
- Stars: 36
- Watchers: 7
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Facebook SDK
## Installation
### Aritsan
php artisan bundle:install facebook-sdk
### Bundle Registration
Add the following to your **application/bundles.php** file:
'facebook-sdk' => array('auto' => true),
## Configuration
Add the following to your **application/config/facebook.php** file:
return array(
'app_id' => '',
'secret' => '',
);
## Usage
$facebook = IoC::resolve('facebook-sdk');
$uid = $facebook->getUser();
Fork of https://github.com/facebook/facebook-php-sdk