You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix custom proxy param names to dot-notation, add discovery URL example
Use customProxy.{url,username,password} (dot-notation) to match what
the WSS proxy actually forwards to the Browser API. Add concrete HTTPS
URL for CDP discovery endpoint.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/cloud/guides/browser-api.mdx
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,16 +74,17 @@ await browser.close();
74
74
|`timeout`|`int`| Session timeout in minutes. Max: 240 (4 hours). |
75
75
|`browserScreenWidth`|`int`| Browser width in pixels. |
76
76
|`browserScreenHeight`|`int`| Browser height in pixels. |
77
-
|`proxyUrl`|`string`| Custom proxy URL (HTTP or SOCKS5). |
78
-
|`proxyUsername`|`string`| Username for the custom proxy. |
79
-
|`proxyPassword`|`string`| Password for the custom proxy. |
77
+
|`customProxy.url`|`string`| Custom proxy URL (HTTP or SOCKS5). |
78
+
|`customProxy.username`|`string`| Username for the custom proxy. |
79
+
|`customProxy.password`|`string`| Password for the custom proxy. |
80
80
81
81
### How it works
82
82
83
83
The browser is automatically created when you connect and automatically stopped when the WebSocket disconnects. No need to call any API to start or stop the browser.
84
84
85
85
<Tip>
86
-
CDP discovery endpoints (`/json/version`, `/json/list`) are also exposed over HTTPS for tools that use HTTP auto-discovery.
86
+
CDP discovery endpoints are also exposed over HTTPS for tools that use HTTP auto-discovery:
0 commit comments