Linkedin-j - update.getUpdateContent(). GetPerson(). GetCurrentStatus() всегда возвращает NULL при использовании Linkedin-j
Я пытаюсь получить обновления пользователей 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.
любое предложение - что мне нужно сделать.?