我想为http get请求创建一个标头,该标头应具有以下键和值
目前我这样做是为了实现它:
table.add(settingsButton).width(Value.percentWidth(0.5f, table));
但这是401未经授权的回应。但是在邮递员中它正在发挥作用。
答案 0 :(得分:2)
您可以添加
等标题 let headers = new Headers();
headers.append('Content-Type', 'application/json');
headers.append('Authorization': api_token);
let options = new RequestOptions({ headers: headers });
return this.http
.get(url, options);