Flowdock
method

get_content

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP
get_content(url, header = {}) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/netHttpClient.rb, line 98
  def get_content(url, header = {})
    unless url.is_a?(URI)
      url = URI.parse(url)
    end
    extra = header.dup
    extra['User-Agent'] = @agent if @agent
    res = start(url) { |http|
        http.get(url.request_uri, extra)
      }
    res.body
  end
Register or log in to add new notes.