2012-07-19 47 views
0

我正在使用Linkedin REST API和PHP。Linkedin群组API调用获取配置文件被评论的成员的URL

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

的API调用

http://api.linkedin.com/v1/groups/2417328/posts:(creation-timestamp,summary,title,type,comments,id,creator:(picture-url,last-name,headline,id,first-name,site-standard-profile-request))?count=100&start=0&modified-since=1312441200000

我想取谁在每篇文章的评论也对成员的个人资料网址。上述呼叫可以做到这一点吗?

回答

1

是的,可以在API调用中指定要从可用的Profile Fields列表中返回的评论创建者字段。要返回评论创建者的配置文件URL,请用comments:(creator:(site-standard-profile-request))替换commentsGroup Field。您可以根据需要在其中指定其他配置文件字段。