[pylons-discuss] Pyramid + authentication via Facebook, Twitter, ...

2015-04-15 Thread Achim Domma
Hi, I'm starting a small just-for-fun app, where I require users to login. I don't want to implement user management on my own, so I would like to allow only authentication via Facebook, Twitter, ... or any OAuth provider. I looked around, but it's hard to get a clear picture what's the way to

Re: [pylons-discuss] Pyramid + authentication via Facebook, Twitter, ...

2015-04-15 Thread Chris Rossi
I use Velruse and it works. I find how it works to be very strange, but it does work. Chris On Wed, Apr 15, 2015 at 3:54 PM, Achim Domma do...@procoders.net wrote: Hi, I'm starting a small just-for-fun app, where I require users to login. I don't want to implement user management on my

Re: [pylons-discuss] Pyramid + authentication via Facebook, Twitter, ...

2015-04-15 Thread Thierry Florac
Hi, I use Authomatic and I'm happy with it... ;-) Best regards, Thierry Le 15 avr. 2015 21:54, Achim Domma do...@procoders.net a écrit : Hi, I'm starting a small just-for-fun app, where I require users to login. I don't want to implement user management on my own, so I would like to allow

Re: [pylons-discuss] Pyramid + authentication via Facebook, Twitter, ...

2015-04-15 Thread Jonathan Vanasco
I found Velruse to be a hassle to integrate for my needs. I just rolled my own. For Twitter I use Twython. It's about 10 lines of pyramid code to implement an outgoing request and inbound callback. The Facebook I wrote `facebook_utils` which is just a lightweight API wrapper. That's about