我正在尝试使用 Apache Wink 从 IBM 主机获取服务文档,但我总是收到错误 403 Forbidden。这是我的代码:
import org.apache.wink.client.Resource;
import org.apache.wink.client.RestClient;
public class CommunityEvents {
private String uri = "https://w3-connections.ibm.com/profiles/atom/search.do?name=Nam,+Vu+Hoai";
public CommunityEvents() {
RestClient restClient = new RestClient();
Resource resource = restClient.resource(uri);
System.out.println(resource.get().getMessage());
}
public static void main(String[] args) {
new CommunityEvents();
}
}
当我将链接放入浏览器地址时,该链接工作正常。我尝试过使用其他 https 并且它们有效。
有人可以更正我的代码或告诉我我错过了什么吗?我需要做什么才能访问上面的链接?
太感谢了 !