# File lib/omniauth/strategies/oauth/blogger.rb, line 12 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) client_options = { :access_token_path => '/accounts/OAuthGetAccessToken', :authorize_path => '/accounts/OAuthAuthorizeToken', :request_token_path => '/accounts/OAuthGetRequestToken', :site => 'https://www.google.com', } super(app, :blogger, consumer_key, consumer_secret, client_options, options, &block) end