Is the API endpoint working at 100%

I am trying to write an integration to the RTM API and I am having trouble connecting to the HTTPS endpoint. It sometimes works, sometimes takes 30s, sometimes times out.
I’ve been using a curl command and when it does work, the echo method returns correctly
Is there something up with the API? Is there something I should be looking out for?
Thank you
I’ve been using a curl command and when it does work, the echo method returns correctly
Is there something up with the API? Is there something I should be looking out for?
Thank you

I have an update
I think this intermittent issue is caused because 172.67.0.91 is timing out.
On my laptop, the dns was able to pickup alternate IPs
However inside of a container, docker was only trying to hit 172.67.0.91 and so always timed out
I added this line to my docker-compose and it allowed me to access you api from inside docker
extra_hosts:
- "api.rememberthemilk.com:104.20.24.111"
I think this intermittent issue is caused because 172.67.0.91 is timing out.
On my laptop, the dns was able to pickup alternate IPs
However inside of a container, docker was only trying to hit 172.67.0.91 and so always timed out
I added this line to my docker-compose and it allowed me to access you api from inside docker
extra_hosts:
- "api.rememberthemilk.com:104.20.24.111"
Log in
to post a reply.