Hi, I am currently experimenting with a AI-solution chatbot that aims to provide nutrient-based recommendations from a specific government-approved website. I am having trouble with the HTTPS Request nodes for the AI chatbot. Some errors appear: The tools from the HTTP request are attempting to get information from a non-existent page of the website hence the error. A second error is that the prompt " server is offline" always appears despite the website fully functioning. Does anyone know any workarounds with HTTP requests? Thanks in advance.
Describe the problem/error/question
What is the error message (if any)?
Please share your workflow
Share the output returned by the last node
{
“errorMessage”: “The connection was aborted, perhaps the server is offline”,
“errorDetails”: {},
“n8nDetails”: {
“time”: “31/08/2025, 18:18:15”,
“n8nVersion”: “1.108.2 (Cloud)”,
“binaryDataMode”: “filesystem”
}
}
I think the problem isn’t your website, it’s that the AI agent is constructing incorrect URLs for your HTTP Request nodes before it even makes the call.
Your error The tools from the HTTP request are attempting to get information from a non existent page, happens because of this line in your tool configuration
That is amazing, thank you for spotting the error as I was very lost. I have just changed the tool configuration and inserted the webpage that I want the AI to get the information from but there is another error. I still get the error despite the webpage fully functioning:
{
“errorMessage”: “The connection was aborted, perhaps the server is offline”,
“errorDetails”: {},
“n8nDetails”: {
“time”: “31/08/2025, 20:34:05”,
“n8nVersion”: “1.108.2 (Cloud)”,
“binaryDataMode”: “filesystem”
}
}
Now @The_Nutrient_Project change the URL in your tool to https://www.google.com and run the workflow, If it works, then the problem is definitely that eatforhealth.gov.au is blocking n8n’s IP address, but if it If it also fails it might be a network issue on n8n’s side.
the next option to try will be to use a proxy or increase the timeout ( the time N8n will wait for a response)
Let me know what you think.
Ok the workflow works with the Google URL so it may be there is a restriction on the government website, thanks for the help! I will try to experiment with the proxy and timeout as well.