Skip to content

xmyl/oauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

OAuthLogin

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

About

This is a OAuth2 login.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages