set_http_client_options

in lib/twurl/app_only_oauth_client.rb [55:64]


    def set_http_client_options(http)
      http.set_debug_output(Twurl.options.debug_output_io) if Twurl.options.trace
      http.read_timeout = http.open_timeout = Twurl.options.timeout || 60
      http.open_timeout = Twurl.options.connection_timeout if Twurl.options.connection_timeout
      http.max_retries = 0
      http.use_ssl     = true
      http.verify_mode = OpenSSL::SSL::VERIFY_NONE
      http
    end