# File lib/omniauth/strategies/oauth/tsohu.rb, line 12 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) @api_key = consumer_key client_options = { :access_token_path => '/oauth/access_token', :authorize_path => '/oauth/authorize', :scheme => :header, :site => 'http://api.t.sohu.com', :request_token_path => '/oauth/request_token', } super(app, :tsohu, consumer_key, consumer_secret, client_options, options, &block) end