我知道这是一个非常基本而又愚蠢的问题,但是因为我是一名先发者并且从早上开始寻找使用gem'linkedin'的例子,所以:git => “GIT中://github.com/pengwynn/linkedin.git”
请使用此宝石向我提供示例。
因为我在这里https://github.com/pengwynn/linkedin/tree/master/lib/linked_in看到客户端类只初始化没有新方法
def initialize(ctoken=LinkedIn.token, csecret=LinkedIn.secret, options={})
这里有什么选择通过那里?这也可以在客户端类中使用。
答案 0 :(得分:1)
调用client.profile
返回一系列个人资料信息。
profile = client.profile
profile.positions # this should return the postions...
# maybe there is a function for each field like
profile.lastname
我大多猜测,因为你没有提供太多信息而且我没有输入,所以我可以尝试自己。希望这有用。
答案 1 :(得分:0)
我是通过添加:
来做到的client.profile(:fields => [:positions]).positions
这将允许我访问特定的位置或字段,而无需进入原始xml,只需使用gem中的方法。一旦我得到格式,宝石就能很好地工作......