A great new OpenID library for Ruby web apps (Rails, Sinatra, Rack, etc) has recently hit the scene. The OmniAuth library supports a plethora of authentication systems, including Twitter, Facebook, Google Apps, and OpenID. OmniAuth is Rack based, and it's easy to slip right into your web app. While it does support OpenID, OmniAuth requires just a bit of manual configuration to support Google's OpenID endpoint. You can use Google OpenID with OmniAuth and your Rails 3 web app: For your Gemfile: gem 'omniauth' For your config/initializers/omniauth.rb : Rails.application.config.middleware.use OmniAuth::Builder do provider :openid, nil, :name => 'google', :identifier => 'https://www.google.com/accounts/o8/id' end What's up with the nil? That tells the OpenID gem to use the memory store, which is the default. You can use any OpenID Store that you wish ( complete list of OpenID stores ). Direct your users to /auth/google For ...