[Rails] Re: Best Practices for Multiple site One login

2012-10-02 Thread Matt Jones


On Monday, 1 October 2012 05:42:13 UTC-4, thansika malar wrote:
>
> Loginbuilder.com offers Single Sign On (SSO) service for multiple website 
> owners. Make use of this service to give your users share one login to use 
> all your websites. User details maintenance is made easier here.
>

Next time you want to spam old threads with ads for your login service, at 
least check to see if the list focuses on the same technology as your 
service (PHP).

--Matt Jones
 

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/fbBmZbZxtGwJ.
For more options, visit https://groups.google.com/groups/opt_out.




[Rails] Re: Best Practices for Multiple site One login

2012-10-01 Thread thansika malar
 

Loginbuilder.com offers Single Sign On (SSO) service for multiple website 
owners. Make use of this service to give your users share one login to use 
all your websites. User details maintenance is made easier here.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/bL3uSeefM9UJ.
For more options, visit https://groups.google.com/groups/opt_out.




[Rails] Re: Best Practices for Multiple site One login

2011-02-10 Thread alexey.Creopolis
we used http://code.google.com/p/rubycas-server/
excellent stuff if you dont want to mess(not really much work) with
OpenID or similar ..

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] Re: Best Practices for Multiple site One login

2011-02-09 Thread Phoenix Rising
There are a couple ways you can go.  If you're in a corporate
environment (as I was when I last did something like this), you may
want to integrate with an LDAP server of some kind (in my case it was
ActiveDirectory 2008).  You'd then authenticate your users through
that LDAP server across all the sites you're running.  You can even
set this kind of configuration up outside of a corporate environment -
having your own LDAP server (Open LDAP is a damn sight cheaper than
ActiveDirectory though!).  Just make sure that if you do it this way,
you set up your LDAP server to be inaccessible from the outside world
as a security precaution.

Another possible route, similar to what Jaymin mentioned above, would
be using something like the Omniauth gem to allow users to
authenticate with their Google, Twitter, Facebook 
accounts.  Ryan Bates over at railscasts.com has several great
screencasts on omniauth, and I strongly encourage you to check them
out!

If you really (and I mean reeeaaly) want to roll your own, you
could.  You could set up a RESTful service that would communicate with
your three apps and allow them to authenticate a user or not.

I'd recommend against rolling your own simply because when you do
that, you run the risk of overlooking a few details that could open
your app up to various hacks (think weak encryption ciphers, broken
session handling, etc.), and the open source projects already out
there have had a lot more eyes look at their code to make sure it
doesn't have any gaping holes in it than anything you could roll on
your own without open sourcing it and lots of scrutiny.  Besides, why
do the work when you can have somebody else do it? :-)

There are a lot of different ways to go about it, but those are a few
options for you to take a look at!  Good luck!

On Feb 9, 3:26 am, Mitchell Gould  wrote:
> Jaymin Shah wrote in post #980516:
>
> > I would suggest exploring openID implementation.
>
> > regards,
> > Jaymin
>
> Thanks Jaymin I will check it out now.
>
> --
> Posted viahttp://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.



[Rails] Re: Best Practices for Multiple site One login

2011-02-09 Thread Mitchell Gould
Jaymin Shah wrote in post #980516:
> I would suggest exploring openID implementation.
>
> regards,
> Jaymin

Thanks Jaymin I will check it out now.

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.