Files
apify--crawlee/docs/guides/proxy_management_inspection_http.ts
2026-07-13 13:23:39 +08:00

14 lines
286 B
TypeScript

import { HttpCrawler, ProxyConfiguration } from 'crawlee';
const proxyConfiguration = new ProxyConfiguration({
/* opts */
});
const crawler = new HttpCrawler({
proxyConfiguration,
async requestHandler({ proxyInfo }) {
console.log(proxyInfo);
},
// ...
});