init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*!
|
||||
* A simple example that shows how to connect users to providers using OpenID.
|
||||
*/
|
||||
|
||||
include 'vendor/autoload.php';
|
||||
|
||||
$config = [
|
||||
'callback' => Hybridauth\HttpClient\Util::getCurrentUrl(),
|
||||
|
||||
'openid_identifier' => 'https://open.login.yahooapis.com/openid20/www.yahoo.com/xrds',
|
||||
// 'openid_identifier' => 'https://openid.stackexchange.com/',
|
||||
// 'openid_identifier' => 'http://steamcommunity.com/openid',
|
||||
// etc.
|
||||
];
|
||||
|
||||
try {
|
||||
$adapter = new Hybridauth\Provider\OpenID($config);
|
||||
|
||||
$adapter->authenticate();
|
||||
|
||||
$tokens = $adapter->getAccessToken();
|
||||
$userProfile = $adapter->getUserProfile();
|
||||
|
||||
// print_r($tokens);
|
||||
// print_r($userProfile);
|
||||
|
||||
$adapter->disconnect();
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
Reference in New Issue
Block a user