It's a API services to retrieve the profile of one facebook user, using the Facebook API Graph.
Download the source code:
$ git clone https://github.com/maurobonfietti/api-graph-facebook.git
$ cd api-graph-facebook/
$ cp .env.example .envEdit and complete the config file .env, and then execute:
$ composer install
$ composer start
$ composer testFor security reasons, I do not publish my FACEBOOK_APP_ID and FACEBOOK_APP_SECRET data on git.
Therefore, if you want to use this service, you will need to complete with your own valid data. In order to do this, you need to register in Facebook developers website: https://developers.facebook.com/apps.
- So, first get your App Id (and App Secret Key).
- Then, edit and complete the config file:
.env:
FACEBOOK_APP_ID = '{YOUR-FB-APP-ID}'
FACEBOOK_APP_SECRET = '{YOUR-FB-APP-SECRET}'
FACEBOOK_APP_VERSION = 'v2.9'
Requests Examples:
$ curl http://localhost:8080/users/1234Response:
Status: 200 OK
{
"id": "1234",
"first_name": "Senait",
"last_name": "Tesfai"
}
$ curl http://localhost:8080/pages/githubResponse:
Status: 200 OK
{
"id": "262588213843476",
"name": "GitHub",
"about": "GitHub is how people build software.",
"link": "https:\/\/www.facebook.com\/GitHub\/"
}
Access the root of the project and run all tests PHPUnit with composer test.
$ cd api-graph-facebook/
$ composer test
> phpunit
PHPUnit 6.5.14 by Sebastian Bergmann and contributors.
........ 8 / 8 (100%)
Time: 1.94 seconds, Memory: 6.00MB
OK (8 tests, 29 assertions)
Coming soon Maybe (depending on my work time and family :-)), I'll add more useful features, using the Facebook API Graph.
You can read more information about this API Documentation in Facebook for Developers website