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;

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;

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;

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;
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· BotSharp + MCP 三步实现智能体开发
· BotSharp 5.0 MCP:迈向更开放的AI Agent框架
· 5. RabbitMQ 消息队列中 Exchanges(交换机) 的详细说明
· 在线聊天系统中的多窗口数据同步技术解密
· 【ESP32】两种模拟 USB 鼠标的方法