PHP code example of gutter / hybridauth
1. Go to this page and download the library: Download gutter/hybridauth library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gutter / hybridauth example snippets
class AuthPresenter extends BasePresenter
{
/** @var \Gutter\HybridAuth\Manager @inject */
public $hybridAuth;
/** @var AuthModel @inject */
public $model;
public function actionProcess()
{
$this->hybridAuth->process();
}
public function actionGoogle()
{
$adapter = $this->hybridAuth->authenticate('Google');
$userProfile = $adapter->getUserProfile();
$user = $this->model->getUserByEmail($userProfile->email);
if ($user) {
$this->login($user);
}
$this->redirect('Login:failed');
}
public function actionFacebook()
{
$adapter = $this->hybridAuth->authenticate('Facebook');
$userProfile = $adapter->getUserProfile();
$user = $this->model->getUserByEmail($userProfile->email);
if ($user) {
$this->login($user);
}
$this->redirect('Login:failed');
}
}