Method: HTTPX::Response#form

Defined in:
lib/httpx/response.rb

#formObject

decodes the response payload into a ruby object if the payload is valid “application/x-www-urlencoded” or “multipart/form-data”.



176
177
178
# File 'lib/httpx/response.rb', line 176

def form
  decode(Transcoder::Form)
end