Как добавить пользовательский заголовок в запрос http с помощью angular5?Я пробовал что-то вроде этого.
import {Headers} from 'angular2/http';
var headers = new Headers();
headers.append(headerName, value);
// HTTP POST using these headers
this.http.post(url, data, {
headers: headers
})
// do something with the response