Sha256: 629e5a4b7777d1c02f92985b4534fc1711acfd6fddc3a057edb6b44ae523a234
Contents?: true
Size: 1016 Bytes
Versions: 2
Compression:
Stored size: 1016 Bytes
Contents
= OmniAuth::OpenID OpenID strategies for the OmniAuth gem. == Installation To get just OpenID functionality: gem install oa-openid For the full auth suite: gem install omniauth == Stand-Alone Example Use the strategy as a middleware in your application: require 'omniauth/openid' require 'openid/store/filesystem' use OmniAuth::Strategies::OpenID, OpenID::Store::Filesystem.new('/tmp') Then simply direct users to '/auth/open_id' to prompt them for their OpenID identifier. You may also pre-set the identifier by passing an <tt>identifier</tt> parameter to the URL (Example: <tt>/auth/open_id?openid_url=google.com</tt>). == OmniAuth Builder If OpenID is one of several authentication strategies, use the OmniAuth Builder: require 'omniauth/openid' require 'omniauth/basic' # for Campfire require 'openid/store/filesystem' use OmniAuth::Builder do provider :open_id, OpenID::Store::Filesystem.new('/tmp') provider :campfire end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oa-openid-0.1.4 | README.rdoc |
oa-openid-0.1.3 | README.rdoc |