Flowdock
method

post

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP
post(url, req_body, 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 86
  def post(url, req_body, 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.post(url.request_uri, req_body, extra)
    }
    Response.new(res)
  end
Register or log in to add new notes.