TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Any good open-source user management libs for web apps?

3 点作者 iradik大约 13 年前
I'm building a web site, and want to authenticate/authorize users, do password resets, and possibly link accounts to facebook/twitter.<p>Anyone make a nice library or web service that does this? My gut feeling is that everyone just rolls their own since it's pretty easy to implement this stuff. But was curious if anyone has implemented such a thing in Java, Ruby, Perl, or Python, or as a web service.

1 comment

SingAlong大约 13 年前
For Ruby there's Devise (email/pass based user management) and Omniauth (facebook, twitter, etc). Omniauth can also be used on top of Devise. There are others too, but I mention these two because they are popular and sufficient for most people. - <a href="https://github.com/plataformatec/devise" rel="nofollow">https://github.com/plataformatec/devise</a> and <a href="https://github.com/intridea/omniauth" rel="nofollow">https://github.com/intridea/omniauth</a><p>For Django, there is Pinax Project - <a href="http://pinaxproject.com/" rel="nofollow">http://pinaxproject.com/</a>