使用Java Restful API调用报连接超时

在IDEA 中使用如下代码:
HanLPClient client = new HanLPClient(“https://hanlp.hankcs.com/api”, auth); //auth填入了申请后的字符串
List<List> list = client.tokenize(“他们悠闲地坐在马车上,手肘放在膝盖上,疆绳松弛地垂成花饰;我却是泥土上工作的、家居的劳工。”);
System.out.println(list);

执行以上代码,报错如下:
Exception in thread “main” java.net.SocketTimeoutException: connect timed out
at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)

我本地使用以下ping命令,不通
ping https://hanlp.hankcs.com/api

求教各位,能不能帮我看下是什么原因导致的

改为:
HanLP = HanLPClient(‘https://www.hanlp.com/hanlp/v21/redirect’, auth=auth, language=‘zh’)