7

我使用 delphi 和 python 实现了相同的代码(发布表单)。python代码完美运行,但delphi代码失败。在 python 中,我可以简单地编写httplib2.debuglevel=4来查看实际发送到服务器的内容。但我不知道如何在delphi中打印内容。

def python_request_data(url, cookie, data):
    httplib2.debuglevel = 4
    conn = httplib2.Http()
    conn.follow_all_redirects = True
    headers = {'Cookie': cookie, 'Content-Type': 'application/x-www-form-urlencoded'}
    response, contents = conn.request(url, 'POST', data, headers=headers)

procedure DelphiRequestData(const Url, Cookie, Data: string);
var
  Client: TIdHttp;
  Params: TStringList;
  Response: string;
begin
  Client := TIdHttp.Create(nil);
  try
    Client.HTTPOptions := [hoKeepOrigProtocol];
    Client.Request.CustomHeaders.AddValue('Cookie', Cookie);
    Params := TStringList.Create;
    try
      Params.QuoteChar := #0;
      Params.Delimiter := '&';
      Params.DelimiterText := Data;
      Client.Request.ContentType := 'application/x-www-form-urlencoded';
      Client.Request.ContentLength := Length(Params.DelimitedText);
      Response := Client.Post(Url, Params);
    finally
      Params.Free;
    end;
  finally
    Client.Free;
  end;
end;

任何提示表示赞赏。

4

1 回答 1

6

您可以使用 TIdLogDebug 作为您的 IdHttp 的拦截。
OnSend 和 OnReceive 事件将以数组或 TBytes 的形式传递所需的信息。

于 2012-12-23T15:13:38.663 回答