2

我正在尝试获取 Linkedin 用户网络更新。

我的代码是-

//Network --->
            System.out.println("Linkedin Users Network ---> Details...");
            @SuppressWarnings("deprecation")
            Set<NetworkUpdateType> nUpdate = EnumSet.of(NetworkUpdateType.SHARED_ITEM, NetworkUpdateType.STATUS_UPDATE);
            int start =0;
            int count =20;
            Network network = client.getNetworkUpdates(nUpdate, start, count);
            System.out.println("Total updates fetched:" + network.getUpdates().getTotal());

            for (Update update : network.getUpdates().getUpdateList()) 
            {
                System.out.println("-------------------------------");
                System.out.println(update.getUpdateKey() + ":" + update.getUpdateContent().getPerson().getFirstName() + " " 
                                    + update.getUpdateContent().getPerson().getLastName() + "->" + update.getUpdateContent().getPerson().getCurrentStatus());
                if (update.getUpdateComments() != null) 
                    {
                        System.out.println("Total comments fetched:" + update.getUpdateComments().getTotal());
                        for (UpdateComment comment : update.getUpdateComments().getUpdateCommentList()) 
                        {
                                System.out.println(comment.getPerson().getFirstName() + " " + comment.getPerson().getLastName() + "->" + comment.getComment());                         
                        }
                    }
            }

但在这儿-

update.getUpdateContent().getPerson().getCurrentStatus()

总是返回 NULL。

任何建议-我需要做什么。?

4

0 回答 0