获得访问令牌和秘密后,访问我的帐户我想获得与他们的个人资料的连接,
Connections cc = client.getConnectionsForCurrentUser();
for(Person p :cc.getPersonList()) {
System.out.println(p.getLastName());
System.out.println("Industry "+p.getIndustry());
System.out.println("currentStatus "+p.getCurrentStatus());
System.out.println("link "+p.getPublicProfileUrl());
System.out.println("position "+p.getEducations());
System.out.println();
}
但我得到的大部分字段都是空的。我不知道我哪里出错了,有人可以帮忙吗?