Delphi:HttpPost

复制代码
function doHttpPost(const aUrl, aJson: string): string;
var
  IDHttp: TIdHTTP;
  requestBody: TStringStream;
begin
  Result := EmptyStr;
  try
    try
      IDHttp := TIdHTTP.Create(nil);
      IDHttp.Request.ContentType := 'application/json';
      requestBody := TStringStream.Create(aJson);
      Result := AnsiLowerCase(Utf8ToAnsi(IDHttp.Post(aUrl, requestBody)));
    except
      on e: Exception do
      begin
        MyWriteLog('[POST]接口请求异常!' + e.Message);
      end;
    end;
  finally
    freeandnil(IDHttp);
    freeandnil(requestBody);
  end;
end;
View Code
复制代码

 

复制代码
uses IdHashMessageDigest,IdHTTP,IdSSLOpenSSL,HTTPApp;

lv_sPosCmd := TStringList.Create;
     lv_sPosCmd.Add('appCode=' + g_sAppCode);
      lv_sPosCmd.Add('service=' + C_SERVICE_QUERY_STOCK_DAY);
      lv_sPosCmd.Add('msgBody=' + lv_sMsgBody);
      lv_sPosCmd.Add('sign=' + lv_sSign);
      lv_sPosCmd.Add('requestTime=' + lv_sTime);
      lv_sPosCmd.Add('batchNo=' + lv_sBatchNo);
      MyWriteLog('提交接口数据:' + StringReplace(lv_sPosCmd.Text,#$D#$A,',',[rfReplaceAll]));

function PostData(const pviUrl: string; const pviData: TStringList; var pvoData, lv_sMsg: string): Boolean;
var
  idHttp: TIdHTTP;
begin
  Result := False;
  try
    pvoData := '';
    lv_sMsg := '默认提示消息!';
    idHttp := TIdHTTP.Create(nil);
    try
      idHttp.Request.ContentType := 'application/x-www-form-urlencoded';      ///json
      idHttp.Request.ContentEncoding := 'utf-8';
      pvoData := Utf8ToAnsi(idHttp.Post(pviUrl, pviData));
      Result := True;
    finally
      FreeAndNil(idHttp);
    end;
  except
    on E: Exception do
    begin
      lv_sMsg := '提交URL接口异常:' + #13#10 + e.Message;
      MyWriteLog(lv_sMsg);
      Exit;
    end;
  end;
end;
View Code
复制代码

 

复制代码
function doHttpPost(const aUrl, aJson: string): string;
var
  IDHttp: TIdHTTP;
  requestBody: TStringStream;
begin
  Result := EmptyStr;
  try
    try
      IDHttp := TIdHTTP.Create(nil);
      IDHttp.HandleRedirects := True;
      IDHttp.Request.CustomHeaders.Clear;
      IDHttp.Request.ContentType := 'application/json';
      if g_sToken <> '' then
        IDHttp.Request.CustomHeaders.Add('access-token:' + g_sToken);
      requestBody := TStringStream.Create(aJson);
      Result := Utf8ToAnsi(IDHttp.Post(aUrl, requestBody));  //AnsiLowerCase
    except
      on e: Exception do
      begin
        MyWriteLog('[POST]接口请求异常!' + e.Message);
      end;
    end;
  finally
    freeandnil(IDHttp);
    freeandnil(requestBody);
  end;
end;
View Code
复制代码

 

复制代码
function doHttpPost(const pviUrl: string; const pviData: TStringList; var pvoData, lv_sMsg: string): Boolean;
var
  idHttp: TIdHTTP;
begin
  Result := False;
  try
    pvoData := '';
    lv_sMsg := '默认提示消息!';
    idHttp := TIdHTTP.Create(nil);
    try
      idHttp.Request.CustomHeaders.Clear;
      idHttp.Request.ContentType := 'application/x-www-form-urlencoded';      ///json
      idHttp.Request.ContentEncoding := 'utf-8';
      if g_sToken <> '' then
        idHttp.Request.CustomHeaders.Add('access-token:' + g_sToken);
      pvoData := Utf8ToAnsi(idHttp.Post(pviUrl, pviData));
      Result := True;
    finally
      FreeAndNil(idHttp);
    end;
  except
    on E: Exception do
    begin
      lv_sMsg := '提交URL接口异常:' + #13#10 + e.Message;
      MyWriteLog(lv_sMsg);
      Exit;
    end;
  end;
end;
View Code
复制代码

 

posted @   襄阳古城  阅读(294)  评论(0编辑  收藏  举报
编辑推荐:
· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
阅读排行:
· BotSharp + MCP 三步实现智能体开发
· BotSharp 5.0 MCP:迈向更开放的AI Agent框架
· 5. RabbitMQ 消息队列中 Exchanges(交换机) 的详细说明
· 在线聊天系统中的多窗口数据同步技术解密
· 【ESP32】两种模拟 USB 鼠标的方法
点击右上角即可分享
微信分享提示