-1

我知道这是一个非常基本且愚蠢的问题,但是由于我是初学者,并且从早上开始寻找示例以使用 gem 'linkedin',:git => "git://github.com/pengwynn/linkedin.git"。

请为我提供使用此 gem 的示例。

因为我在这里看到https://github.com/pengwynn/linkedin/tree/master/lib/linked_in客户端类只有初始化没有新方法

 def initialize(ctoken=LinkedIn.token, csecret=LinkedIn.secret, options={})

什么是选项在这里传递什么?这在客户端类中也可用。

4

2 回答 2

1

该调用client.profile返回一组配置文件信息。

profile = client.profile

profile.positions # this should return the postions...
# maybe there is a function for each field like
profile.lastname

我主要是在猜测,因为您没有提供太多信息,而且我没有链接,所以我可以自己尝试。希望这会有所帮助。

于 2012-04-16T09:24:58.040 回答
0

我通过添加:

client.profile(:fields => [:positions]).positions

这将允许我访问特定的位置或字段,而无需进入原始 xml,只需使用 gem 中的方法。一旦我得到格式,宝石就会很好地工作......

于 2012-04-16T09:24:38.937 回答