Angular HttpClient 授权标头已创建但消失

Pur*_*onk 5 delphi authorization http-headers ionic-framework angular

问题

我正在尝试发送请求标头,特别是授权标头。授权标头应如下所示: Authorization: Basic NTY2MTI0Og==在标头列表中。whereBasic表示是base64编码的。

我很肯定它确实被添加到了在 Angular 中提出的 get 请求中: Request in Angular。 虽然我不确定是什么op。(顺便说一句,我还不允许嵌入图像)

它应该是这样的:来自标准的 Datasnap Delphi 项目

这是我的样子:在此处输入图片描述

如您所见,缺少 Authorization 标头。

错误

控制台错误:截图

Fiddler Raw 请求:截图

这就是我创建 Rest 调用的方式:

public authRestCall(auth: string): Observable<string> {
  var headers = new HttpHeaders;
  //HttpHeaders is immutable
  headers = headers.append('Authorization', 'Basic ' + auth);
  return this.http.get<string>(this.localUrl + 'DSAdmin/GetPlatformName', {headers: headers});
}
Run Code Online (Sandbox Code Playgroud)

选择

我尝试这样做的另一种方法是创建一个这样的对象,在Angular 指南中描述

const httpOptions = {
  headers: new HttpHeaders({
  'Authorization': 'NTY2MTI0OnVuZGVmaW5lZA=='
  })
};
Run Code Online (Sandbox Code Playgroud)

然后我会像这样添加:

return this.http.get<string>(this.localUrl + 'DSAdmin/GetPlatformName', httpOptions;
Run Code Online (Sandbox Code Playgroud)

德尔福

在后端服务器(Delphi datasnap 模块)中,我像这样配置了 CORS:

Response.setCustomHeader('Access-Control-Allow-Origin','*');
Response.SetCustomHeader('Access-Control-Allow-Headers','*');
Response.SetCustomHeader('Access-Control-Allow-Methods','*');
Run Code Online (Sandbox Code Playgroud)

版本

- Angular 5 - ionic-angular: 3.9.2 - List item - Delphi RAD studio 10.1 Berlin


没有为我解决问题的来源

Angular 4.3 HTTPClient 基本授权不起作用

Angular HttpClient 未设置授权标头

Angular 4.3 HttpClient 不发送 Authorization 标头

在获取请求中添加“授权”标头

我检查了更多问题,但没有一个能帮助我解决问题。我已经被困在这个问题上将近一个星期了。也许我没有正确理解某些东西,但它不起作用。

如果有什么不清楚或者我应该添加更多关于某事的信息,请告诉我。感谢您的阅读。


Screenshosts 作为文本

角度标头对象:

headers: Map(0) {}
lazyInit: HttpHeaders {normalizedNames: Map(0), lazyUpdate: null, headers: 
Map(0)}
lazyUpdate: Array(1)
  0:
    name: "Authorization"
    op: "a"
    value: "Basic NTY2MTI0OnVuZGVmaW5lZA=="
    __proto__: Object
    length: 1
  __proto__: Array(0)
normalizedNames: Map(0) {}
__proto__: Object
Run Code Online (Sandbox Code Playgroud)

它应该是什么样子:

Request URL: http://localhost:8080/datasnap/rest/DSAdmin/GetPlatformName/
Request Method: GET
Status Code: 200 OK
Remote Address: 127.0.0.1:8888
Referrer Policy: no-referrer-when-downgrade
Access-Control-Allow-Headers: *
Access-Control-Allow-Methods: *
Access-Control-Allow-Origin: *
Connection: close
Content-Length: 20
Content-Type: text/html; charset=UTF-8
Date: Thu, 18 Oct 2018 10:09:38 GMT
Pragma: dssession=63572.937476.131783,dssessionexpires=1197188
Accept: application/json
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en;q=0.9,nl-NL;q=0.8,nl;q=0.7,en-US;q=0.6
Authorization: Basic NTY2MTI0Og==
Cache-Control: max-age=0
Content-Type: text/plain;charset=UTF-8
Host: localhost:8080
If-Modified-Since: Mon, 1 Oct 1990 05:00:00 GMT
Proxy-Connection: keep-alive
Referer: http://localhost:8080/
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Run Code Online (Sandbox Code Playgroud)

我的样子:

Request URL: http://localhost:8080/datasnap/rest/DSAdmin/GetPlatformName
Request Method: OPTIONS
Status Code: 401 Unauthorized
Remote Address: [::1]:8080
Referrer Policy: no-referrer-when-downgrade
Access-Control-Allow-Headers: *
Access-Control-Allow-Methods: *
Access-Control-Allow-Origin: *
Connection: close
Content-Length: 49
Content-Type: text/html; charset=utf-8
Date: Thu, 18 Oct 2018 13:47:12 GMT
WWW-Authenticate: Basic realm="REST"
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en;q=0.9,nl-NL;q=0.8,nl;q=0.7,en-US;q=0.6
Access-Control-Request-Headers: authorization
Access-Control-Request-Method: GET
Connection: keep-alive
Host: localhost:8080
Origin: http://localhost:8100
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Run Code Online (Sandbox Code Playgroud)

控制台错误:

VM1038:1 OPTIONS http://localhost:8080/datasnap/rest/DSAdmin/GetPlatformName 
401 (Unauthorized)
(anonymous) @ VM1038:1

(index):1 Failed to load 
http://localhost:8080/datasnap/rest/DSAdmin/GetPlatformName: Response for 
preflight does not have HTTP ok status.
Run Code Online (Sandbox Code Playgroud)

Fiddler Raw:请求

OPTIONS http://localhost:8080/datasnap/rest/DSAdmin/GetPlatformName HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Access-Control-Request-Method: GET
Origin: http://localhost:8100
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Access-Control-Request-Headers: authorization,x-authentication,x-authentication-impersonate
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en;q=0.9,nl-NL;q=0.8,nl;q=0.7,en-US;q=0.6
Run Code Online (Sandbox Code Playgroud)

回复

HTTP/1.1 401 Unauthorized
Connection: close
Content-Type: text/html; charset=utf-8
Content-Length: 49
Date: Thu, 18 Oct 2018 10:06:24 GMT
Access-Control-Allow-Origin: *
Access-Control-Allow-Headers: *
Access-Control-Allow-Methods: *
WWW-Authenticate: Basic realm="REST"
<HTML><BODY><B>401 Unauthorized</B></BODY></HTML>
Run Code Online (Sandbox Code Playgroud)

Pur*_*onk 2

我通过在 Delphi 中添加以下代码来修复它TWebModule1.WebModuleBeforeDispatch

if Trim(Request.GetFieldByName('Access-Control-Request-Headers')) <> '' then
begin
  Response.SetCustomHeader('Access-Control-Allow-Headers', Request.GetFieldByName('Access-Control-Request-Headers'));
  Handled := True;
end;
Run Code Online (Sandbox Code Playgroud)

来源:Delphi 的 Datasnap ISAPI 模块上的 CORS 问题