0

我正在使用带有 PHP 的 Linkedin REST API。

我正在尝试获取特定讨论组的帖子。

API调用是

http://api.linkedin.com/v1/groups/2417328/posts:(creation-timestamp,summary,title,type,comments,id,creator:(picture-url,last-name,headline,id,first-名称,站点标准配置文件请求))?count=100&start=0&modified-since=1312441200000

我还想获取对每个帖子发表评论的成员的个人资料 URL。是否可以通过上述调用来做到这一点?

4

1 回答 1

1

是的,这是可能的 - 在 API 调用中,指定您希望从可用配置文件字段列表中返回的评论创建者字段。要返回评论创建者的个人资料 URL,请将comments Group Field替换为comments:(creator:(site-standard-profile-request))。您可以根据需要在其中指定其他配置文件字段。

于 2012-07-21T23:28:55.123 回答