KO
|
EN
gitlite — search
Search
#python
#llm
#python3
#mongodb
#reactjs
#machine-learning
#kotlin
#ai
#java
#android
#react
#rust
li3_facebook
★ 27
Open GitHub ↗
Lithium Library for the Facebook API
Download README (.md)
Explore Similar Repositories
ruby-openvz
:
Ruby OpenVZ API
DOMBrew
:
A fast 2.5 KB client-side DOM builder
gmarks-android
:
Google Bookmarks for Android
opentsdb.net
:
GitHub Pages backed hosting of opentsdb.net
zucchini
:
An Erlang INI parser
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
li3_facebook
?
Download (.md)
# li3_facebook This Wrapper is a Lithium PHP Library using the official Facebook PHP SDK. Thanks goes out to [tmaiaroto](https://github.com/tmaiaroto) for writing the original. This fork builds on his work to provide [Composer](http://getcomposer.org/) support and to remove all `.gitmodules`. ## Installation > *Note: You will need a Facebook API key/secret. Load `li3_facebook` by updating `config/bootstrap/libraries.php`: ```php <?php // ... snip ... Libraries::add('li3_facebook', array( 'appId' => '', 'secret' => '', )); ``` ## To-Do These official Facebook SDK Settings are currently not yet supported: * cookie * domain * fileUpload if you want to enable those Settings, you have to unset the validation: li3_facebook\extension\FacebookProxy::$_validateConfiguration = false; After Configuration you should able to use it via static calls or direkt method invoking: static: li3_facebook\extension\FacebookProxy::getAppId($params) or li3_facebook\extension\FacebookProxy::run('getAppId',$params)