2

我正在使用 API 中的链接。我想使用名称搜索我的连接。它完成了我的第二件事是我需要searched users new connection得到get 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));
                }
            }
        }

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

4

1 回答 1

0

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

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

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

于 2014-01-15T05:24:29.043 回答