- Redesigned the main page with a modern look and feel. - Added search and filtering functionality for drills. - Implemented pagination for browsing drills. - Added the ability for users to mark drills as favorites.
33 lines
861 B
PHP
33 lines
861 B
PHP
<?php
|
|
/*!
|
|
* An example on how use Access Tokens to access providers APIs, and how to setup custom API endpoints.
|
|
*/
|
|
|
|
include 'vendor/autoload.php';
|
|
|
|
$config = [
|
|
'callback' => Hybridauth\HttpClient\Util::getCurrentUrl(),
|
|
|
|
'keys' => ['id' => 'your-facebook-app-id', 'secret' => 'your-facebook-app-secret'],
|
|
|
|
'endpoints' => [
|
|
'api_base_url' => 'https://graph.facebook.com/v2.8/',
|
|
'authorize_url' => 'https://www.facebook.com/dialog/oauth',
|
|
'access_token_url' => 'https://graph.facebook.com/oauth/access_token',
|
|
]
|
|
];
|
|
|
|
try {
|
|
$adapter = new Hybridauth\Provider\Facebook($config);
|
|
|
|
$adapter->setAccessToken(['access_token' => 'user-facebook-access-token']);
|
|
|
|
$userProfile = $adapter->getUserProfile();
|
|
|
|
// print_r($userProfile);
|
|
|
|
$adapter->disconnect();
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
}
|