init
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?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();
|
||||
}
|
||||
Reference in New Issue
Block a user