# File lib/rubytter/oauth.rb, line 9
    def get_access_token_with_xauth(login, password)
      consumer = create_consumer
      consumer.get_access_token(nil, {}, {
        :x_auth_mode => "client_auth",
        :x_auth_username => login,
        :x_auth_password => password
      })
    end