This commit is contained in:
Looly
2022-09-30 18:59:50 +08:00
parent 42a427193b
commit 4212d47bc2
4 changed files with 39 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
package cn.hutool.http;
import cn.hutool.core.lang.Console;
import org.junit.Ignore;
import org.junit.Test;
import java.net.HttpCookie;
public class IssueI5TPSYTest {
@Test
@Ignore
public void redirectTest() {
final String url = "https://bsxt.gdzwfw.gov.cn/UnifiedReporting/auth/newIndex";
final HttpResponse res = HttpUtil.createGet(url).setFollowRedirects(true)
.cookie(new HttpCookie("iPlanetDirectoryPro", "123"))
.execute();
Console.log(res.body());
}
}