LuaHttpResponse Methods
This section describes the methods provided by LuaHttpResponse
objects. A LuaHttpResponse
object is provided when you send an HTTP request using the send method on a LuaHttpRequest object.
If you have a LuaHttpResponse
object called response
you can call its methods using the ':
' operator. For example:
response:get_http_code()
Method | Description |
---|---|
get_body | Returns the body of the HTTP response. |
get_header | Returns the value of the specified HTTP header. |
get_headers | Returns the value of all HTTP headers in the response. |
get_http_code | Returns the HTTP response code. |