2017 © Pedro Peláez
 

cakephp-plugin facebook-cake-component

Facebook plugin for CakePHP

image

neha2601/facebook-cake-component

Facebook plugin for CakePHP

  • Wednesday, April 25, 2018
  • by neha2601
  • Repository
  • 0 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Facebook Api plugin for CakePHP 3

Build Status License, (*1)

This plugin provides basic support for use FACEBOOK API services in your CakePHP 3 application., (*2)

Requirements

This plugin has the following requirements:, (*3)

  • CakePHP 3.0.0 or greater.
  • Facebook PHP_SDK 5.

Installation

You can install this plugin into your CakePHP application using composer., (*4)

The recommended way to install composer packages is:, (*5)

composer require facebook/graph-sdk

Configuration

To use a Facebook config file, you should have a global.php file in your config folder. The default configurations are as below and defined in config/api.php., (*6)

<?php

return [
    'Facebook' => [
        'AppId' => '1336289226489835',
        'AppSecret' => 'b2c01b4544a3e388ce84c41456dccaf3',
        'DefaultGraphVersion' => 'v2.2',
    ],
];

and load below file in your bootstrap.php., (*7)

Configure::load('global', 'default');

In your controller,load facebook component into your overridden initialize method like this., (*8)

   public function initialize()
    {
        parent::initialize();
        $this->loadComponent('Facebook');
    }

Usage

@link https://developers.facebook.com/docs/php/howto/example_facebook_login. You just need to load facebook component in controller. For example,, (*9)

namespace App\Controller;

use Facebook\Facebook;

/**
 * Facebook login.
 */
class SocialDetailsController extends ApiController
{

    /**
     * Facebook login.
     */
    public function login()
    {
        $permissions = ['email']; // Optional permissions
        $callbackUrl = 'http://' . $_SERVER['SERVER_NAME'] . 'facebook-callback'; // Redirect URL
        $loginUrl = $this->Facebook->facebookLogin($permissions, $callbackUrl);
        $this->set('loginUrl', $loginUrl);
    }

     /**
     * facebook callback method.
     */
    public function facebookCallback()
    {
        $this->autoRender = false;
        $facebook = $this->Facebook->getAccessToken();
        return true; //Return in your page
    }
}

You can define your logic in your action function as per your need. For above example, You can redirect them to a your page., (*10)

The URL for above example will be http://yourdomain.com/SocialDetails/login. You can customize it by setting the routes in APP/config/routes.php., (*11)

Simple :), (*12)

The Versions

25/04 2018

dev-master

9999999-dev https://github.com/Neha2601/facebook-cake-component

Facebook plugin for CakePHP

  Sources   Download

MIT

The Requires

 

The Development Requires

api cakephp facebook

25/04 2018

1.1.0

1.1.0.0 https://github.com/Neha2601/facebook-cake-component

Facebook plugin for CakePHP

  Sources   Download

MIT

The Requires

 

The Development Requires

api cakephp facebook