从我的应用程序中,我想访问一个 api。卷曲请求是:
curl --request POST https://... --header 'Authorization: Token ...' --header 'Accept: application/csv' --header 'Content-type: application/vnd.flux' --data '...'
它工作并从 InfluxDB 实例返回数据。当我在 Angular 中尝试一切时,问题就出在:我设置了一个代理,可以正确重定向请求(我在终端中检查了这个)。但是在网络浏览器(Firefox 开发者版)中,我得到了
POSThttp://localhost:4200/api/
[HTTP/1.1 401 Unauthorized 204ms].
Status 401
Unauthorized
Version HTTP/1.1
Übertragen 350 B (55 B Größe)
Referrer Policy strict-origin-when-cross-origin
api URL 是 https 地址,http 也会发生同样的错误。在生产应用程序中也会发生同样的情况。
代理.conf
{
"/api/*": {
"target": "...",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
}
}
终端确认:
[HPM] POST /api/ -> correct url
组件中的请求:
apiurl = '/api/';
data = JSON.stringify('request');
headers:HttpHeaders = new HttpHeaders();;
constructor(private route: ActivatedRoute,
private httpClient: HttpClient) {
this.headers.set('Authorization', 'Token token');
this.headers.set('Content-type', 'application/vnd.flux');
}
getConfig() {
return this.httpClient.request<any>('post',`${this.apiurl}`,
{
body: this.data,
headers: this.headers
}
);
}
ngOnInit(): void {
this.getConfig()
.pipe(first())
.subscribe(
data => {
console.log(data);
},
error => {
console.log(error);
});
}
我会很感激你的想法,谢谢!