Response
Response class represents responses which are received by page.
Methods
all_headers
Added in: v1.15An object with all the response HTTP headers associated with this response.
Usage
response.all_headers()
Returns
body
Added in: v1.8Returns the buffer with response body.
Usage
response.body()
Returns
finished
Added in: v1.8Waits for this response to finish, returns always null
.
Usage
response.finished()
Returns
frame
Added in: v1.8Returns the Frame that initiated this response.
Usage
response.frame
Returns
from_service_worker
Added in: v1.23Indicates whether this Response was fulfilled by a Service Worker's Fetch Handler (i.e. via FetchEvent.respondWith).
Usage
response.from_service_worker
Returns
header_value
Added in: v1.15Returns the value of the header matching the name. The name is case insensitive. If multiple headers have the same name (except set-cookie
), they are returned as a list separated by ,
. For set-cookie
, the \n
separator is used. If no headers are found, null
is returned.
Usage
response.header_value(name)
Arguments
Returns
header_values
Added in: v1.15Returns all values of the headers matching the name, for example set-cookie
. The name is case insensitive.
Usage
response.header_values(name)
Arguments
Returns
headers
Added in: v1.8An object with the response HTTP headers. The header names are lower-cased. Note that this method does not return security-related headers, including cookie-related ones. You can use response.all_headers() for complete list of headers that include cookie
information.
Usage
response.headers
Returns
headers_array
Added in: v1.15An array with all the request HTTP headers associated with this response. Unlike response.all_headers(), header names are NOT lower-cased. Headers with multiple entries, such as Set-Cookie
, appear in the array multiple times.
Usage
response.headers_array()
Returns
json
Added in: v1.8Returns the JSON representation of response body.
This method will throw if the response body is not parsable via JSON.parse
.
Usage
response.json()
Returns
ok
Added in: v1.8Contains a boolean stating whether the response was successful (status in the range 200-299) or not.
Usage
response.ok
Returns
request
Added in: v1.8Returns the matching Request object.
Usage
response.request
Returns
security_details
Added in: v1.13Returns SSL and other security information.
Usage
response.security_details()
Returns
- NoneType|Dict#
issuer
str (optional)Common Name component of the Issuer field. from the certificate. This should only be used for informational purposes. Optional.
protocol
str (optional)The specific TLS protocol used. (e.g.
TLS 1.3
). Optional.subjectName
str (optional)Common Name component of the Subject field from the certificate. This should only be used for informational purposes. Optional.
validFrom
float (optional)Unix timestamp (in seconds) specifying when this cert becomes valid. Optional.
validTo
float (optional)Unix timestamp (in seconds) specifying when this cert becomes invalid. Optional.
server_addr
Added in: v1.13Returns the IP address and port of the server.
Usage
response.server_addr()
Returns
status
Added in: v1.8Contains the status code of the response (e.g., 200 for a success).
Usage
response.status
Returns
status_text
Added in: v1.8Contains the status text of the response (e.g. usually an "OK" for a success).
Usage
response.status_text
Returns
text
Added in: v1.8Returns the text representation of response body.
Usage
response.text()
Returns
url
Added in: v1.8Contains the URL of the response.
Usage
response.url
Returns