I can call curl -s localhost:3030
from command line and get a good reply. But when I call using axios or fetch within my React app, I get net::ERR_CONNECTION_REFUSED
.
For example, this works:
axios.post("http://159.89.183.155:3030/authentication", {
This does not work (net::ERR_CONNECTION_REFUSED
):
axios.post("http://localhost:3030/authentication", {
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi @bobbyiliev ,
I’m facing same issue.
But still getting this error http://mydomain.com:3000/login net::ERR_CONNECTION_REFUSED
I’m using axios in react to make calls to node js. In my react app that’s my API_URL for login.
Ah! localhost resolved to 127.0.0.1
netstat showed 3000 binding to 0 0.0.0.0:3000 Not sure why, but it gives me an avenue to explore
Much appreciated!
Hi there @cyclops,
What I could suggest is checking what port your application has is binded to first. To do that SSH to your Droplet and then run:
Also another thing you could check is if your localhost resolves correctly to the
127.0.0.1
IP address:Another thing that you need to keep in mind is that you need to run the
axios
script from the Droplet itself in order for it to work.Feel free to share the output of the commands here so I could try to further advise you.
Hope that this helps! Regards, Bobby