xmyl/oauth

This is a oauth2 login.

dev-master 2019-10-17 08:45 UTC

This package is auto-updated.

Last update: 2024-04-17 18:42:32 UTC


README

This is a oauth2 login.

Installation

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.

Usage

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