Download the PHP package joelbutcher/laravel-facebook-graph without Composer
On this page you can find all versions of the php package joelbutcher/laravel-facebook-graph. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download joelbutcher/laravel-facebook-graph
More information about joelbutcher/laravel-facebook-graph
Files in joelbutcher/laravel-facebook-graph
Package laravel-facebook-graph
Short Description Laravel wrapper for the Facebook Graph SDK for PHP 7.4 and PHP 8.
License MIT
Informations about the package laravel-facebook-graph
Laravel Facebook Graph SDK
Installation
Getting started with Laravel Facebook Graph is easy - first, install the package via composer
Then publish the package config:
This will add a config/facebook.php
file to your project. Here you may configure the following options:
Option | Description |
---|---|
app_id |
Used to identify your app when requesting a users' access token |
app_secret |
The secret key used to authorize your app with Facebook |
redirect_url |
The destination URL to redirect users to, after authenticating with Facebook |
graph_version |
The graph version to target when making user-authenticated requests to the Facebook Graph API, defaults to v11.0 |
beta_mode |
Indicates whether or not to run a beta version of the SDK |
URL Detection Handler
You may add a custom URL Detection handler, by binding a singleton your implementation in the register
method of the AppServiceProvider
:
Persistent Data Handlers
In order to store the state
for OAuth requests to Facebook, you will either need to register a persistent data handler. You can find an example of how to do this here
HTTP Client
The current version of the Facebook Graph SDK (v6) uses HTTPlug for making requests. If you wish to use your own HTTP Client, it MUST implment the Http\Client\HttpClient
interface. Please refer to this example
All versions of laravel-facebook-graph with dependencies
illuminate/support Version ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
joelbutcher/facebook-graph-sdk Version ^6.1.2