我正在尝试使用Delphi XE3和Indy10编写一个使用Mashape API服务的客户端应用程序,但我遇到了一些障碍。
以下是我的尝试:
我在表单上放置了TIdHTTP
和TIdSSLIOHandlerSocketOpenSSL
个组件,并使用TIdHTTP.IOHandler
属性将它们链接在一起。然后我在表单上放了一个按钮和备忘录,并在按钮OnClick
上放置了以下代码:
procedure TForm1.Button2Click(Sender: TObject);
begin
IdHTTP1.IOHandler := IdSSLIOHandlerSocketOpenSSL1;
IdHTTP1.Request.CustomHeaders.AddValue('X-Mashape-Key: ','<my_api_key>');
Memo1.Lines.Text := IdHTTP1.Get('https://hbrd-v1.p.mashape.com/anime/log-horizon');
end;
然后我启动了我的应用程序,当我按下按钮时,应用程序将等待片刻,然后吐出HTTP/1.1 403 Forbidden
错误消息。第二次按下按钮将显示HTTP/1.1 500 Internal Service Error
消息。
我已经检查过我的系统上是否有我需要的SSL库文件,而且我已经一次又一次地测试了我的凭据,看起来它们是正确的,我知道网址是正确的,所以我必须在我的代码中遗漏某些内容才能显示这些错误。我希望在这方面有更多经验的人可以提供一些建议。
更新:此处TRESTClient
代码有效:
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IPPeerClient, Vcl.StdCtrls,
REST.Response.Adapter, REST.Client, Data.Bind.Components,
Data.Bind.ObjectScope;
type
TForm1 = class(TForm)
RESTClient1: TRESTClient;
RESTRequest1: TRESTRequest;
Button1: TButton;
Memo1: TMemo;
RESTResponse1: TRESTResponse;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
RESTClient1.BaseURL := 'https://hbrd-v1.p.mashape.com/anime/log-horizon';
RESTRequest1.Execute;
Memo1.Lines.Text := RESTResponse1.Content;
// The only thing not shown here is the RESTRequest1.Params which are
// Name: 'X-Mashape-Key'
// Value: 'my-api-key'
// Kind: pkHTTPHEADER
// Everything else is included here which isn't much.
end;
end.
我想用TIdHTTP
做同样的事情。
答案 0 :(得分:2)
如果不看到实际的HTTP消息来回传递,很难知道实际发生了什么。当HTTP响应指示错误时,会引发EIdHTTPProtocolException
异常,其ErrorMessage
属性包含服务器响应的正文。它是否为您提供有关错误发生原因的任何指示?
但是,您需要更改此内容:
IdHTTP1.Request.CustomHeaders.AddValue('X-Mashape-Key: ','<my_api_key>');
对此:
IdHTTP1.Request.CustomHeaders.Values['X-Mashape-Key'] := '<my_api_key>';
并且摆脱了程序化IdHTTP1.IOHandler := IdSSLIOHandlerSocketOpenSSL1;
赋值,因为你已经在表单设计器中处理了它。
除此之外,403
错误表示服务器不接受您的凭据。我没有看到您在代码中为TIdHTTP.Request.Username
和TIdHTTP.Request.Password
属性分配任何凭据,您是否在表单设计器中执行此操作?
TIdHTTP
使用插件系统来处理HTTP身份验证方案。如果服务器允许BASIC
身份验证,则可以将TIdHTTP.Request.BasicAuthentication
属性设置为true,以便在没有其他身份验证方案可用时将BASIC
用作默认值。您可以使用TIdHTTP.OnSelectAuthorization
事件查看服务器实际支持的身份验证。
如果服务器需要非BASIC
身份验证,则需要在IdAuthentication...
子句中添加相关uses
以启用该插件。例如,IdAuthenticationDigest
用于DIGEST
身份验证,IdAuthenticationNTLM
用于NTLM
身份验证等。或者,添加IdAllAuthentications
单元以启用所有插件。< / p>
如果您需要使用Indy不支持的HTTP身份验证(例如OATH
),您可以:
使用TIdHTTP.Request.CustomHeaders.Values['Authorization']
手动提供相关的凭据数据。
实现自定义TIdAuthentication
派生类,并将其实例分配给TIdHTTP.Request.Authorization
属性,或将其类类型分配给{{1}的VAuthenticationClass
参数事件。