gpt4 book ai didi

delphi - Delphi 10.3 中使用 HTTPRIO 进行基本身份验证

转载 作者:行者123 更新时间:2023-12-01 23:10:20 27 4
gpt4 key购买 nike

Delphi 10.3 中的 HTTPRIO.HTTPWebNode.OnBeforePost 事件发生了变化。

在 Delphi 10.3 之前,事件处理程序是这样定义的,并且它工作得很好:

procedure TForm1.HTTPRIO1HTTPWebNode1BeforePost(const HTTPReqResp: THTTPReqResp;
Data: Pointer);
var
auth: String;
begin
auth := 'Authorization: Basic ' + IdEncoderMIME1.EncodeString('user:password');
HttpAddRequestHeaders(Data, PChar(auth), Length(auth), HTTP_ADDREQ_FLAG_ADD);
end;

在Delphi 10.3中,Data参数消失了,而是给出了THTTPClient,我不知道如何用它实现基本身份验证:

procedure TForm1.HTTPRIO1HTTPWebNode1BeforePost(const HTTPReqResp: THTTPReqResp;
Client: THTTPClient);
var
auth: String;
begin
auth := 'Authorization: Basic ' + IdEncoderMIME1.EncodeString('user:password');
???
end;

有什么提示吗?

最佳答案

尝试使用请求的 UsernamePassword属性,例如:

HTTPReqResp.UserName := 'user';
HTTPReqResp.Password := 'password';

如果这不起作用,请尝试使用客户端的 CustomHeaders相反,属性,例如:

Client.CustomHeaders['Authorization'] := 'Basic ' + IdEncoderMIME1.EncodeString('user:password');

关于delphi - Delphi 10.3 中使用 HTTPRIO 进行基本身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54833530/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com