Skip to content
Advertisement

How to do a GET on my localhost node server using curl?

I am trying to GET a page from my localhost server using the command line on linux.

I have my node’s REST endpoint like this:

JavaScript

And going here on my browser works perfectly:

chrome output

However, I can’t figure out how to use CURL to do the same GET request via the command line.

Here is what I have tried:

  • curl -H "Accept: */*" -X GET http://localhost:8084/autogen -v
  • curl --ipv4 -H "Accept: */*" -X GET http://localhost:8084/autogen -v
  • curl -i -H "Accept: */*" -X GET http://localhost:8084/autogen -v
  • curl -H "Accept: text/html" -H "Content-Type: text/html" -X GET http://localhost:8084/autogen -v
  • curl -H "Accept: text/html" -X GET http://localhost:8084/autogen -v
  • curl -H "Accept: text/plain" -H "Content-Type: text/plain" -X GET http://localhost:8084/autogen -v
  • curl -I -H "Accept: */*" -X GET http://localhost:8084/autogen -v
  • curl --ipv4 -X GET http://localhost:8084/autogen -v

ALL CURL COMMANDS RETURN Response: HTTP/1.1 204 No Content

==================================

Logs & Info

Here is the full log of the response message from the CURL commands above (substituted sections with {}):

JavaScript

Also here is the full headers from vising the page via chrome:

headers from chrome

Also my no_proxy environment variable is set to not be used on localhost:

JavaScript

And here’s the versions of what I’m using:

JavaScript

Also, side note, my server will tell me when someone goes to that page like

JavaScript

But when I use the curl commands I get NOTHING so it must not be resolving or something

Advertisement

Answer

@dave_thompson_085 helped me with this one!

Apparently chrome was not using a proxy, and curl was, and I do NOT want to use the proxy.

The cause was my curl settings file ~/.curlrc. It contained something like this:

JavaScript

So, I removed ~/.curlrc and BAM! Works now!

Thank you!

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement