Flatlogic Bot d076708932 feat: Implement new design and features for the main page
- 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.
2025-12-07 18:15:23 +00:00

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();
}