dev-master
9999999-dev https://github.com/tmaiaroto/li3_facebookLithium Library for the Facebook API
The Requires
by Tom Maiaroto
by Chris Jones
api facebook lithium li3
Lithium Library for the Facebook API
This Wrapper is a Lithium PHP Library using the official Facebook PHP SDK.
Thanks goes out to tmaiaroto for writing the original.
This fork builds on his work to provide Composer support and to remove all .gitmodules
., (*1)
*Note: You will need a Facebook API key/secret., (*2)
Load li3_facebook
by updating config/bootstrap/libraries.php
:, (*3)
<?php // ... snip ... Libraries::add('li3_facebook', array( 'appId' => '', 'secret' => '', ));
These official Facebook SDK Settings are currently not yet supported:, (*4)
if you want to enable those Settings, you have to unset the validation:, (*5)
li3_facebook\extension\FacebookProxy::$_validateConfiguration = false;, (*6)
After Configuration you should able to use it via static calls or direkt method invoking:, (*7)
static: li3_facebook\extension\FacebookProxy::getAppId($params), (*8)
or li3_facebook\extension\FacebookProxy::run('getAppId',$params), (*9)
Lithium Library for the Facebook API
api facebook lithium li3