When I import:
import { HttpClientModule } from '@angular/common/http';
import { HttpModule } from '@angular/http';
And then:
constructor(private http: Http, private httpClient: HttpClient) {}
this.httpClient.post(...
this.http.post(...
In this case, I use Microsoft Identity, which relies on cookies for authentication.
Could that cause problems if I post, for example, the login in one way and the register in another?