我正在尝试为自己取回一个配置文件,但我只回复了一个成功的http响应......没有数据。这是我正在使用的代码。
try {
RestClient restClient = new RestClient("https://apps.na.collabserv.com","my.email","my.password");
Response<AtomFeed> responseFeed = restClient.doGet("/profiles/atom/profileService.do").asAtomFeed();
System.out.println(responseFeed.getData().toXmlString());
} catch(Exception e) {
e.printStackTrace();
}
如果我尝试向网址添加电子邮件=,我会收到403禁止返回。
不确定问题是什么,
谢谢!