opauth / github
GitHub authentication strategy for Opauth
Installs: 8 684
Dependents: 4
Suggesters: 0
Security: 0
Stars: 23
Watchers: 9
Forks: 12
Open Issues: 1
Requires
- php: >=5.2.0
- opauth/opauth: >=0.4.0
This package is auto-updated.
Last update: 2024-10-13 10:41:54 UTC
README
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.
Demo: http://opauth.org/#github
Getting started
-
Install Opauth-GitHub:
cd path_to_opauth/Strategy git clone git://github.com/opauth/github.git GitHub
or
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_id
andclient_secret
. -
Direct user to
http://path_to_opauth/github
to authenticate
Strategy configuration
Required parameters:
<?php 'GitHub' => array( 'client_id' => 'YOUR CLIENT ID', 'client_secret' => 'YOUR CLIENT SECRET' )
Optional parameters:
scope
, state
License
Opauth-GitHub is MIT Licensed
Copyright © 2012 U-Zyn Chua (http://uzyn.com)