delphi – IdHTTP基本身份验证访问冲突

delphi – IdHTTP基本身份验证访问冲突,第1张

概述我正在尝试使用Indy HTTP类进行HTTP身份验证.但由于某些未知原因,我在此行中收到了访问冲突错误: IdHTTP1.Request.Authentication.Username:=用户名; 代码延伸是: IdHTTP1:= TIdHttp.Create(Application); IdHTTP1.ConnectTimeout:= 10000; IdHTTP1.Request.Cl 我正在尝试使用Indy http类进行http身份验证.但由于某些未知原因,我在此行中收到了访问冲突错误:
IDhttp1.Request.Authentication.Username:=用户名;

代码延伸是:

IDhttp1:= TIDhttp.Create(Application);  IDhttp1.ConnectTimeout:= 10000;  IDhttp1.Request.Clear;  IDhttp1.Request.BasicAuthentication:= true;  IDhttp1.Request.Authentication.Username := Username;  IDhttp1.Request.Authentication.Password := Password;      try        IDhttp1.Get(PbxURL);        httpCode := IDhttp1.ResponseCode;      except        on E: EIDhttpProtocolException do          httpCode := IDhttp1.ResponseCode;

我正在使用Delphi 2010,并且已经尝试过这样的事情:
IDhttp1.Request.Authentication.Username:=’admin’;
但没有解决问题……

解决方法 从快速检查看,当Request.BasicAuthentication为true时,似乎不需要IDhttp.Request.Authentication(因此没有创建).您应该使用Request.Username和Request.Password.

IDhttp1:= TIDhttp.Create(Application);IDhttp1.ConnectTimeout:= 10000;IDhttp1.Request.Clear;IDhttp1.Request.BasicAuthentication:= true;IDhttp1.Request.Username := Username;IDhttp1.Request.Password := Password;
总结

以上是内存溢出为你收集整理的delphi – IdHTTP基本身份验证访问冲突全部内容,希望文章能够帮你解决delphi – IdHTTP基本身份验证访问冲突所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1270266.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存