1

我正在使用 Rails LinkedIn API gem。https://github.com/pengwynn/linkedin/issues/141

我正在尝试按名字和姓氏搜索链接的用户,到目前为止我已经想出了这个:

@profiles = linkedin_client.search(:first_name => fname, :last_name => lname, :sort => "connections", :fields => %w(id first-name last-name headline industry location api-standard-profile-request picture_url public_profile_url summary));

我的一个问题是,“:first_name”会作为参数“first-name”工作吗?我的意思是下划线可以很好地替代破折号“-”吗?

我希望这些结果将按连接进行组织,正如我在上面所做的那样:sort => "connections"

问题是它不会返回任何结果,即使我知道用户名存在。谢谢您的帮助!

4

1 回答 1

1

仅使用 :first_name 作为参数。

名字不起作用!

于 2012-12-05T07:13:09.700 回答