class Net::HTTP::Get
Class for representing HTTP method GET:
require 'net/http' uri = URI('http://example.com') hostname = uri.hostname # => "example.com" req = Net::HTTP::Get.new(uri) # => #<Net::HTTP::Get GET> res = Net::HTTP.start(hostname) do |http| http.request(req) end
See Request Headers.
Properties:
-
Request body: optional.
-
Response body: yes.
-
Safe: yes.
-
Idempotent: yes.
-
Cacheable: yes.
Related:
-
Net::HTTP.get
: sendsGET
request, returns response body. -
Net::HTTP#get
: sendsGET
request, returns response object.
Constants
- METHOD
- REQUEST_HAS_BODY
- RESPONSE_HAS_BODY