我需要在 Delphi 2010 中执行此操作。我不使用 .net
这段代码在 Java 中:
HttpClient client = new HttpClient();
GetMethod method = new GetMethod();
method = new GetMethod("https://www.xxxxx.xx/portal/ILlogin?username=XXXXXX&password=XXXXXXXX&skin=yyyyyyyyyy&portal=GG");
method.setFollowRedirects(false);
int rc = client.executeMethod(method);
Header locationHeader = method.getResponseHeader("location");
if(locationHeader != null) {
tokenURL = locationHeader.getValue();
}
它是一个 http 请求,会生成一个重定向到 webreader。
我如何在 Delphi 2010 中对此进行编码。