request_uri()
public
Description
Returns the full path for an HTTP request, as required by Net::HTTP::Get.
If the URI contains a query, the full path is URI#path + ‘?’ + URI#query. Otherwise, the path is simply URI#path.
Example:
newuri = URI::HTTP.build(path: '/foo/bar', query: 'test=true') newuri.request_uri # => "/foo/bar?test=true"