如何验证Google Plus配置文件是否存在?

时间:2014-12-15 15:18:47

标签: google-app-engine google-plus profile

我已将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。让我知道是否有人有更好的解决方案来解决这个问题

1 个答案:

答案 0 :(得分:1)

你想:

public abstract boolean isPlusUser()

source