获取特定用户在API中链接的网络更新

时间:2013-05-16 04:12:24

标签: java api linkedin linkedin-j

我在API中使用Linked.I想使用名称搜索我的连接。它完成了 我的第二件事是我需要获得searched users new connectionget status update and provide status update

我正在使用linkedin-j jar文件。

我获得了新连接的整体连接。

Network network = linkedin.getConnectionsNewConnectionNetwork(linkedinCrawlerWithOAuth.liClientWithAuth);
        System.out.println("Total updates fetched:" + network.getUpdates().getTotal());
        System.out.println("--------NetWork Updates ---------\n");
        for(Update update:network.getUpdates().getUpdateList()){
            Connections newConnection =linkedin.getConnectionsFromUpdateContent(linkedinCrawlerWithOAuth.liClientWithAuth,update.getUpdateContent());
            for(Person person:newConnection.getPersonList()){
                if(!( "private".equals(person.getId()) )){
                    printProfileDetails(linkedin.printProfileById(linkedinCrawlerWithOAuth.liClientWithAuth,person));
                }
            }
        }

但我想让特定用户获得新的连接。你能帮助我吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试获取类型连接(CONN)的网络更新。这将返回配置文件在上下文中创建的新联系人。 在REST形式中,

http://api.linkedin.com/v1/people/~/network/updates?type=CONN&count=50&start=0

这是REST API调用。在linkedin-j jar的Connections API中应该有一个等效的签名。