Opauth strategy for GitHub authentication.
Implemented based on http://developer.github.com/v3/oauth/ using OAuth2.
Opauth is a multi-provider authentication framework for PHP.
-
Install Opauth-GitHub:
cd path_to_opauth/Strategy git clone git://github.com/opauth/github.git GitHubor
composer require opauth/github
-
Register a GitHub application at https://github.com/settings/applications/new
- Enter URL as your application URL (this can be outside of Opauth)
- Callback URL: enter
http://path_to_opauth/github/oauth2callback
-
Configure Opauth-GitHub strategy with
client_idandclient_secret. -
Direct user to
http://path_to_opauth/githubto authenticate
Required parameters:
<?php
'GitHub' => array(
'client_id' => 'YOUR CLIENT ID',
'client_secret' => 'YOUR CLIENT SECRET'
)Optional parameters:
scope, state
Opauth-GitHub is MIT Licensed
Copyright © 2012 U-Zyn Chua (http://uzyn.com)