body()
Instance Public methods
Returns the full entity body.
Calling this method a second or subsequent time will return the string already read.
1 2 3 4 5 6 7 8 | http.request_get( '/index.html' ) {|res| puts res.body } http.request_get( '/index.html' ) {|res| p res.body.object_id # 538149362 p res.body.object_id # 538149362 } |
Please login to continue.