Delphi xe 10.3.2-快递接口封装-【快递鸟(即时查询和单号识别)】

编译环境:Windows 7 +Delphi xe 10.3.2

封装了快递鸟接口,注意的坑:MD5要转为小写。

function TKDniaoAPI.StrtoMd5(const str: string): string;
var
  AMD5: TIdHashMessageDigest5;
begin
  AMD5 := TIdHashMessageDigest5.Create;
  try
    Result := AnsiLowerCase(AMD5.HashStringAsHex(str, IndyTextEncoding(TEncoding.UTF8)));
     //注意转小写
  finally
    AMD5.Free;
  end;
end;

猜你喜欢

转载自www.cnblogs.com/redhat588/p/11889456.html