def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
client_options = {
:access_token_path => '/oauth/qzoneoauth_access_token',
:authorize_path => '/oauth/qzoneoauth_authorize',
:http_method => :get,
:request_token_path => '/oauth/qzoneoauth_request_token',
:scheme => :query_string,
:site => 'http://openapi.qzone.qq.com',
}
options[:authorize_params] = {:oauth_consumer_key => consumer_key}
super(app, :qzone, consumer_key, consumer_secret, client_options, options, &block)
end