Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any OpenID implementation on Laravel ? (Provider and Consumer)

What I'm trying to do is having One CoreApp acting like an OpenID Provider, and the otherApps as OpenID Consumers so the user can choose between :

  • Login with the CoreApp OpenID system
  • Login with other OpenID Providers (Google, Facebook, Twitter...)
  • Creating an account which means the user will be redirect to the CoreApp for creating an other account and will use that account as OpenID account to login with it on his App.

I see that oAuth (1 & 2) are meant too for this usage ? any Laravel tutorial/howto ?

Due to the beta stage of L4 (Beta1), I guess I'm good to go with L3 for production ?

I'm fairly new to Laravel, Still in the RTFM level :)

share|improve this question
Yes, Laravel 3 is good for production L4 is a very early beta – dualed Jan 28 at 0:40

2 Answers

up vote 1 down vote accepted

The best route to go down with this is probably to look for something that's framework agnostic, i.e. something that would work with any PHP framework, but still does all the hard work for you.

Take a look at Packagist for lots of these, including a few good multi-provider OpenID packages and OAuth packages.

They're all installable with composer, and you can do a lot of the setup for them in Laravel 3 (and 4's) start.php file.

Hope this helps!

share|improve this answer
Yeah, Composer is promising! Funny, I found a lot of 'packages' symfony ready, and then i noticed the 'relationship' between Laravel4 and Symfony – Hicham LEMGHARI Jan 27 at 23:22

Check out HybridAuth. It's framework agnostic and integrates may OAuth and OAuth 2.0 providers.

Here is a basic example on how to implement into Laravel 4: http://www.mrcasual.com/on/coding/laravel4-package-management-with-composer/

share|improve this answer
It looks nice, Can HybridAuth act as An OpenID/oAuth provider ? So I can add my CoreApp as an OpenID provider ? – Hicham LEMGHARI Jan 27 at 23:19
No HybridAuth cannot. I'd suggest using other packages for that. I came across one that may be worth looking into: oauth2-server-php – pkat Feb 19 at 1:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.