We Are Going To Discuss About Parse Error: The server returned a malformed response – Error: Parse Error: Expected HTTP/ – when trying to access one of my app URLs with postman. So lets Start this Python Article.
Parse Error: The server returned a malformed response – Error: Parse Error: Expected HTTP/ – when trying to access one of my app URLs with postman
- How to solve Parse Error: The server returned a malformed response – Error: Parse Error: Expected HTTP/ – when trying to access one of my app URLs with postman
SOLVED
Since the exposed api has been built by third parts for internal use, it is not exposed to the public.
I did not know that, so in the request URL I had put the well-known port number for HTTP requests, the number 22 (see the list of well-known port numbers.).
To solve the problem, in the request URL, I changed the<target_machine_port>
to the port on which the api is actually exposed. - Parse Error: The server returned a malformed response – Error: Parse Error: Expected HTTP/ – when trying to access one of my app URLs with postman
SOLVED
Since the exposed api has been built by third parts for internal use, it is not exposed to the public.
I did not know that, so in the request URL I had put the well-known port number for HTTP requests, the number 22 (see the list of well-known port numbers.).
To solve the problem, in the request URL, I changed the<target_machine_port>
to the port on which the api is actually exposed.
Solution 1
SOLVED
Since the exposed api has been built by third parts for internal use, it is not exposed to the public.
I did not know that, so in the request URL I had put the well-known port number for HTTP requests, the number 22 (see the list of well-known port numbers.).
To solve the problem, in the request URL, I changed the <target_machine_port>
to the port on which the api is actually exposed.
Original Author edited Jan 14 at 15:08 Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.