Geonode Proxies
const proxyConfiguration = new ProxyConfiguration({
proxyUrls: [
"http://{username}:{password}@rotating-residential.geonode.com:9010"
],
});
logger.info("Setting up crawler.");
const crawler = new PlaywrightCrawler({
proxyConfiguration,This is the error I'm getting when Crawlee tries to enqueue the first url fed to it
Error in default url (array
urls) Expected property values to be of type string but received type null in object optionsWhen try to run without proxies everything works fine. Also the username and password variables are replaced with proper data
