Skip to content

fhferreira/opauth-laravel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Opauth For Laravel

Version 0.2 - Release Date: 17.01.2013

This is based on Opauth - http://opauth.org/

Authorize users with your application implementing multiple Oauth2 providers. Demo: http://fakeheal.eu/opauth-bundle/public/

Currently Supported

  • Facebook
  • Twitter

** I've only tested it with Facebook. This does not mean that it won't work for other Oauth2 providers. Refer to http://opauth.org/ for help on implementing it. **

Usage Example

http://example.com/opauth-bundle/public/facebook

Route::get('/', array('uses' => 'home@index'));

Route::get('facebook, facebook/(:any)', array('as' => 'facebook', function() {
	Laravel\IoC::resolve('opauth-facebook');
}));

Route::post('done', array('as' => 'done', function(){
	$response = unserialize(base64_decode( $_POST['opauth'] ));
    echo '<pre>';
    print_r($response);
    echo '</pre>';
}));

After authorizing you'll be redirect to a link you've specified in: /bundles/opauth/start.php

$config = array(
	'Strategy' => array(
		'Facebook' => array(
			'app_id' => 'YOUR_APP_ID',
			'app_secret' => 'YOUR_APP_SECRET'
		)		
	),
	'security_salt'	=> 'YOURSALTGOESHERE!',
	'path' 			=> '/opauth-bundle/public/',
	'callback_transport' => 'post',
	'callback_url'	=> '/opauth-bundle/public/done'
);

##DO NOT FORGET TO CHANGE YOUR APP_ID & APP_SECRET

About

Opauth bundle for Laravel - A PHP Framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published