2017 © Pedro Peláez
 

lithium-library li3_facebook

Lithium Library for the Facebook API

image

tmaiaroto/li3_facebook

Lithium Library for the Facebook API

  • Monday, June 3, 2013
  • by tmaiaroto
  • Repository
  • 2 Watchers
  • 26 Stars
  • 59 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 8 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

li3_facebook

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)

Installation

*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' => '',
));

To-Do

These official Facebook SDK Settings are currently not yet supported:, (*4)

  • cookie
  • domain
  • fileUpload

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)

The Versions

03/06 2013

dev-master

9999999-dev https://github.com/tmaiaroto/li3_facebook

Lithium Library for the Facebook API

  Sources   Download

The Requires

 

api facebook lithium li3