Я пытаюсь передать значения через HTTP Заголовки, вот мой код
this.ParamObj = {'companyId': this.TenandtID , 'groupId': this.SiteID ,
'userId': this.userID, 'ticket': this.TangoToken, 'tangoApplicationName':
'BUI' };
const two = JSON.stringify(this.ParamObj);
const headers = new HttpHeaders()
.set('Content-Type', 'application/json')
.set('Authorization', 'Bearer ' + this.TangoToken)
.set('Tango-Context', two);
this.http.get(environment.GetTangoApps, { responseType: 'text', headers: headers }).subscribe(res => {
console.log(res);
});
Не могу передать его в ответ, я получаю 403 и ошибка перекрестного источника