knowndiaspora/external/facebook-sdk
Phyks 3205f6049b Init from Facebook plugin 2015-01-17 23:12:58 +01:00
..
docs Init from Facebook plugin 2015-01-17 23:12:58 +01:00
src/Facebook Init from Facebook plugin 2015-01-17 23:12:58 +01:00
tests Init from Facebook plugin 2015-01-17 23:12:58 +01:00
CONTRIBUTING.md Init from Facebook plugin 2015-01-17 23:12:58 +01:00
LICENSE Init from Facebook plugin 2015-01-17 23:12:58 +01:00
README.md Init from Facebook plugin 2015-01-17 23:12:58 +01:00
autoload.php Init from Facebook plugin 2015-01-17 23:12:58 +01:00
composer.json Init from Facebook plugin 2015-01-17 23:12:58 +01:00
phpunit.xml.dist Init from Facebook plugin 2015-01-17 23:12:58 +01:00

README.md

Facebook SDK for PHP

Latest Stable Version

This repository contains the open source PHP SDK that allows you to access Facebook Platform from your PHP app.

Usage

This version of the Facebook SDK for PHP requires PHP 5.4 or greater.

Minimal example:

<?php

use Facebook\FacebookSession;
use Facebook\FacebookRequest;
use Facebook\GraphUser;
use Facebook\FacebookRequestException;

FacebookSession::setDefaultApplication('YOUR_APP_ID','YOUR_APP_SECRET');

// Use one of the helper classes to get a FacebookSession object.
//   FacebookRedirectLoginHelper
//   FacebookCanvasLoginHelper
//   FacebookJavaScriptLoginHelper
// or create a FacebookSession with a valid access token:
$session = new FacebookSession('access-token-here');

// Get the GraphUser object for the current user:

try {
  $me = (new FacebookRequest(
    $session, 'GET', '/me'
  ))->execute()->getGraphObject(GraphUser::className());
  echo $me->getName();
} catch (FacebookRequestException $e) {
  // The Graph API returned an error
} catch (\Exception $e) {
  // Some other error occurred
}

Complete documentation, installation instructions, and examples are available at: https://developers.facebook.com/docs/php

Tests

  1. Composer is a prerequisite for running the tests.

Install composer globally, then run composer install to install required files.

  1. Create a test app on Facebook Developers, then create tests/FacebookTestCredentials.php from tests/FacebookTestCredentials.php.dist and edit it to add your credentials.

  2. The tests can be executed by running this command from the root directory:

./vendor/bin/phpunit

Contributing

For us to accept contributions you will have to first have signed the Contributor License Agreement.

When committing, keep all lines to less than 80 characters, and try to follow the existing style.

Before creating a pull request, squash your commits into a single commit.

Add the comments where needed, and provide ample explanation in the commit message.