0
I have a local code. The front (Angular 8) sends a POST request to the back (.net). On another computer it works normally.
But in my current computer does not work.
Returns:
Http failure response for (url): 0 Unknown Error
on the console appears:
POST (url) net::ERR_INVALID_HTTP_RESPONSE
if I call the direct back request returns normal. What could it be? CORS on the back and front are configured.
already seen this problem in version 2.2 of . net core, in our case we solved changing the version
– Lucas Miranda
I thought about it. However, on another computer it works normally. Only on "mine" it doesn’t. And on production/test environment it also works.
– Rebeca Nonato
@Lucasmiranda worked. The error was in 2.2.0 - I switched to 2.2.204 and now it ran. I updated Runtime too. Thank you. :)
– Rebeca Nonato