web-dev-qa-db-ja.com

DelphiでHTTPS POSTリクエストを行う方法は?

DelphiでHTTPS POSTリクエストを行う最も簡単な方法は何ですか?HTTP POSTリクエストの作成で問題はありませんが、どうすれば実行できますか? SSLを使用していますか?私はググってみましたが、これを十分に説明するものは何も見つかりませんでした。

これが私が試したコードです:

procedure TForm1.FormCreate(Sender: TObject);
var
  responseXML:TMemoryStream;
  responseFromServer:string;
begin
  responseXML := TMemoryStream.Create;
  IdSSLIOHandlerSocketOpenSSL1 := TIdSSLIOHandlerSocketOpenSSL.Create(self);
  with idSSLIOHandlerSocketOpenSSL1 do
    begin
      SSLOptions.Method := sslvSSLv2;
      SSLOptions.Mode := sslmUnassigned;
      SSLOptions.VerifyMode := [];
      SSLOptions.VerifyDepth := 0;
      Host := '';
    end;

  IdHTTP1 := TIdHTTP.Create(Self);
  with IdHTTP1 do
    begin
      IOHandler := IdSSLIOHandlerSocketOpenSSL1;
      AllowCookies := True;
      ProxyParams.BasicAuthentication := False;
      ProxyParams.ProxyPort := 0;
      Request.ContentLength := -1;
      Request.ContentRangeEnd := 0;
      Request.ContentRangeStart := 0;
      Request.Accept := 'text/html, */*';
      Request.BasicAuthentication := False;
      Request.UserAgent := 'Mozilla/3.0 (compatible; Indy Library)';
      HTTPOptions := [hoForceEncodeParams];
    end;
  responsefromserver := IdHTTP1.Post('https://.../','name1=value1&name2=value2&....');
end;

実行しようとすると、次のエラーが発生します。

Project myProject.exe raised exception class EFOpenError with message 'Cannot open file "C:\...\Projects\Debug\Win32\name1=value1name2=value2 The system cannot find the file specified'.

分かりません。パラメータを送信しましたが、エラーはファイルを送信したように聞こえます。

また、myProject.exeフォルダーにlibeay32.dllとssleay32.dllを含めました。

17
Peacelyk

Delphiのバージョンまたはindyのバージョンを指定していませんが、以前にバンドルされたIndyとDelphi 2009およびHTTPSでいくつかの問題がありました。最新のソースを indy svn から入手したときに、問題は解決しました。

3
Mohammed Nasman

http://chee-yang.blogspot.com/2008/03/using-indy-https-client-to-consume.html

var S: TStringList;
   M: TStream;
begin
 S := TStringList.Create;
 M := TMemoryStream.Create;
 try
   S.Values['Email'] := 'your google account';
   S.Values['Passwd'] := 'your password';
   S.Values['source'] := 'estream-sqloffice-1.1.1.1';
   S.Values['service'] := 'cl';

   IdHTTP1.IOHandler := IdSSLIOHandlerSocketOpenSSL1;
   IdHTTP1.Request.ContentType := 'application/x-www-form-urlencoded';
   IdHTTP1.Post('https://www.google.com/accounts/ClientLogin', S, M);
   Memo1.Lines.Add(Format('Response Code: %d', [IdHTTP1.ResponseCode]));
   Memo1.Lines.Add(Format('Response Text: %s', [IdHTTP1.ResponseText]));

   M.Position := 0;
   S.LoadFromStream(M);
   Memo1.Lines.AddStrings(S);
 finally
   S.Free;
   M.Free;
 end;

終わり;

2
k.bon

Indyの別の代替手段は Synapse です。

このクラスライブラリは、投稿の完全な制御を提供しますが、シンプルなワンライナー投稿メソッドも提供します。

function HttpPostURL(const URL, URLData: string; const Data: TStream): Boolean;
0
Darian Miller