Hi,
I am trying to interact to my back-end golang server which is running on port number 9000.I tried to connect by changing proxy settings but my call gets stuck on sending request.I tried all google solutions but its not working.
“https://www.postman-echo.com/get” this request is working though.
I am attaching my golang server configuration file as well as the server running
-pfa of proxy settings and sending request.
To determine if the issue is specific to Postman, does the request complete successfully if you use CURL or similar tool, e.g.
curl http://127.0.0.1:9000/v1/user/books
To see if it’s something unique to your Go server configuration, here’s a Go server example that I’ve gotten to work with Postman. If you can this one working maybe you can compare your current config with this one.
Not sure if this will help, but if you’re just going against a local server, you shouldnt need to refer to it as a proxy, just simply make the request to the localhost / local IP with the port number and url.
As for the authentication side of things, thats where I am not sure. If you do have Basic Authorization set up on your server, then you would include that in the header of the request, and not in the proxy. This should only come into play after you can get some sort of response from the server for any attempt to send it a request.
Other than that, its hard to be sure with out seeing any log information.