Apify and Crawlee Official Forum

Home
Members
sergioska
s
sergioska
Offline, last seen 4 months ago
Joined August 30, 2024
I'm trying to use a static proxy group to send traffic through our specific proxy server with a stable IP address
below the piece of code involved
Plain Text
const httpsAgent = new HttpsProxyAgent({
            host: 'proxy.apify.com', 
            port: 8000, 
            auth: "<username>:<password>"
        });
        const axiosWithProxy = axios.create({httpsAgent});
const response = await axiosWithProxy.get(endpoint);

but when launch the execution of the bit, last line of code above return an error that say:
"Request failed with status code 407 AxiosError: Request failed with status code 407 ..."
error details are shown in the attached screenshot.
Anyone can help me please?
6 comments
v
s
Hi there,
reading apify documentation at this link https://docs.apify.com/platform/limits#platform-limits I can see that there is a limitation of 100 schedules per user.
Is it possible extends that limit? If yes how?
3 comments
A
s
v
I'm developing a bot that needs to call an api service behind a VPN (under my control).
The bot will be hosted on apify but to do that, I need to put in my VPN white list, Apify ip addresses.
How can I do? I tried to ask on live chat inside my company apify account, but I didn't receive a feedback until now.
Anyone can help me please?
5 comments
L
s
Hi there,
I'm trying Apify gmail integration to send a report about execution of a crawler.
I enabled that using Dataset file as Text option; so I can add report in a Dataset and I receive data in a json attachment via email.
It seems that works fine but I think in this way every dataset will send via email.
My question is: Is there a way to send only one kind of dataset?