angular authentication and Authorization to n,et api code example
Example: how to pass basic auth for api in angular 11
import { HttpHeaders } from '@angular/common/http';
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
'Authorization': 'Basic ' + btoa('username:password')
})
};