# File lib/omniauth/strategies/oauth/my_space.rb, line 8
      def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
        client_options = {
          :site => 'http://api.myspace.com',
          :access_token_path => '/access_token',
          :authorize_path => '/authorize',
          :request_token_path => '/request_token',
          :http_method => "get"
        }
        options.merge! :http_method => :get
        super(app, :my_space, consumer_key, consumer_secret, client_options, options, &block)
      end