This is a oauth2 login.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist xmyl/oauth:dev-master
or add
"xmyl/oauth": "dev-master"
to the require section of your composer.json
file.
Once the extension is installed, simply use it in your code by :
Use login
$oauth = new \xmyl\oauth\GithubOAuth2($clientId, $clientSecret, $callbackUrl);
$redirectUri = $oauth->getAuthorizeUrl()
Use callback
$oauth = new \xmyl\oauth\GithubOAuth2($clientId, $clientSecret, $callbackUrl);
$status = $oauth->getAccessToken($code);
if (!$status) {
throw new \Exception('Access Token error');
}
$oauthUser = $oauth->getUserByApi();