# File lib/omniauth/strategies/oauth/tqq.rb, line 13 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) @api_key = consumer_key client_options = { :access_token_path => '/cgi-bin/access_token', :authorize_path => '/cgi-bin/authorize', :http_method => :get, :nonce => nonce, :realm => 'OmniAuth', :request_token_path => '/cgi-bin/request_token', :scheme => :query_string, :site => 'https://open.t.qq.com', } super(app, :tqq, consumer_key, consumer_secret, client_options, options, &block) end