okta_get_cookies
Retrieve cookies from a saved Okta session to make authenticated HTTP requests without launching a browser. Optionally filter by domain.
Instructions
Retrieve cookies from a stored session.
Returns the raw cookie data from a stored Playwright session. Useful for making authenticated HTTP requests without launching a browser.
Args: url: URL whose stored session cookies to retrieve. domain_filter: Optional domain substring to filter cookies (e.g., 'okta.com').
Returns: JSON: {"count": int, "cookies": [{name, value, domain, path, ...}], "url": str} Error: {"error": str, "url": str}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| domain_filter | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |