Executing HTTP Requests
http_request Function
The http_request
function allows developers to perform additional HTTP POST/GET requests during a page interaction, unlocking access to more data. By capturing these internal API calls, you can directly access key data in machine-readable formats like JSON, bypassing the need to parse HTML.
Parameter | Required | Description |
---|---|---|
| Required | URL | The target URL for the HTTP request |
| Optional (Default = | Enum | The HTTP request method - |
| Optional | Object | Additional headers required for the request in JSON format |
| Optional | Integer | Controls the timeout if the internal HTTP request being performed in ms |
Example request
Like all Page Interactions, infinite scrolling is capped by the global 120-second session timeout, and will be terminated if this limit is reached.
Last updated