- 授权协议: MIT
- 开发语言: Ruby
- 操作系统: 跨平台
- 软件首页: https://github.com/intridea/omniauth
- 软件文档: https://github.com/intridea/omniauth
软件介绍
OmniAuth 是一个利用 Rack 中间件实现的灵活的认证系统。
示例代码:
Rails.application.config.middleware.use OmniAuth::Builder do provider :developer unless Rails.env.production? provider :twitter, ENV['TWITTER_KEY'], ENV['TWITTER_SECRET'] end
