"Http failure response for (unknown url): 0 Unknown Error" Angular

18,811

From what I can see, it's not an error from the http client directly, but from your server.

In a similar issue, the problem was coming from CORS and the fact that the Access-Control-Allow-Origin header was not correctly added in case the server response did not have a 20X or 30X status.

Did you check your server and log the call ?

Hope that helps

Share:
18,811
sf_2018
Author by

sf_2018

Updated on September 11, 2022

Comments

  • sf_2018
    sf_2018 over 1 year

    I try use service httpClient post but I have this error:

    enter image description here

    code service:

    constructor(private http:HttpClient) { }
    
                  Login(data)
                  {
    
                    let headers: any = new HttpHeaders();
                    headers.append('Content-Type', 'application/json');
    
                    return this.http.post('link api',data,{headers: headers})
                    .subscribe(res => console.log(res),err => { console.log(err);});
    
                  }
    

    and I try add responseType: 'text' but also error ... I use angular 4

    • Orodan
      Orodan about 6 years
      It might be a silly question, but are your sure your 'link api' is a well formed url ?
    • sf_2018
      sf_2018 about 6 years
      Yes link api is a well formed url ...
    • sf_2018
      sf_2018 about 6 years
      any help please