我正在尝试使用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库文件,并且已经做过,而且我已经一次又一次地测试了我的凭据,它们似乎是正确的,而且我知道url是正确的,所以我必须丢失我的代码中的某些内容导致这些错误显示。我希望有人在这方面有更多经验,也许能够提供一些建议。
更新:这是有效的
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
做同样的事情。 最佳答案
不查看实际的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
单元来启用所有插件。如果您需要使用Indy不支持的HTTP身份验证(例如
OATH
),则可以:使用
TIdHTTP.Request.CustomHeaders.Values['Authorization']
手动提供相关的凭据数据。实现一个自定义
TIdAuthentication
派生的类,并将其实例分配给TIdHTTP.Request.Authorization
属性,或者将其类类型分配给VAuthenticationClass
事件的TIdHTTP.OnSelectAuthorization
参数。关于delphi - 使用Indy10访问Mashape API服务的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24643655/