我已将Admin SDK Directory API与Google+域名API相结合,以获取所有Google plus个人资料信息。
但是,有些人在我们的组织中没有Google Plus配置文件生成空指针Exception,我也尝试了下面的代码来验证
Person profile = plus.people().get(directorylist.getId()).execute();
if(!profile.isEmpty())
{
System.out.println(profile.getDisplayName());
profile.getImage().getUrl();
profile.getSkills();
System.out.println("SKILL="+profile.getSkills());
System.out.println("ORG="+profile.getOrganizations());
}
但验证不起作用,它抛出空指针Exception。让我知道是否有人有更好的解决方案来解决这个问题