Hi,
Is there a way to check API health? I have a plan that is supposed to not have a rate limit, assuming it can take a "considerable" load of requests.
I build an app lately that does a lot of POST requests to XANO. A lot of times my App has an error that cannot post to XANO. When checking request history, there seems to be no issue, all requests are "200", but I get this error in my APP:
{
"status": "rejected",
"reason": {
"message": "connect ECONNREFUSED XX.XXX.XX.XX:443",
"name": "Error",
"stack": "Error: connect ECONNREFUSED
XX.XXX.XX.XX:443 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16)",
"code": "ECONNREFUSED"
}
}
I do know this is related to TCP/IP connections and port issues, but I am thinking how can I solve this?
Thank you very much.