0

我按照所有这些说明在我的 rails 应用程序中获取我的linkedin 连接

这里的要点 www.gist.github.com/sreeharikmarar/6364970

它很好地提供了连接,但这并没有提供连接的电子邮件 ID。

profile = @linkedin_client.profile(:fields=>["connections"])

如何获取我的连接的电子邮件 ID。

4

1 回答 1

1

试试这个来获得连接:

# view connections for the currently authenticated user
client.connections

这个来源

笔记:

您不能“浏览连接”。也就是说,您只能获取授予您的应用程序访问权限的用户的连接。您无法获得该用户连接的连接(2 度连接)。

参考:LinkedIn Connections Api

于 2014-12-02T10:18:06.907 回答