I'm trying to understand how the observable structure is. And I would like to find where is the response, the error and the complete. I would like to know also where to find in the response, in the case of a POST request, the body and the header part.
So I did a console.log to see the observable:
login(email: string, password: string) {
console.log('Obs : ', this.http.post<any>(this._URL, { email: email, password: password }));
}
And I saw in the console:
But I don't know where to find the part I've explained on top.