如何将 LinkedIn API、OmniAuth-LinkedIn 和 LinkedIn gem 发布到我的 LinkedIn 群组?
问问题
316 次
1 回答
1
如果您使用的是 LinkedIn API,那么您只需要像这样进行 post 调用:
POST http://api.linkedin.com/v1/groups/{group-id}/posts
并传递您的小组讨论输入:
<post>
<title>New Group Discussion</title>
<summary>What does everyone think about platform development?</summary>
<content>
<submitted-url>http://developer.linkedin.com</submitted-url>
<title>Build the Professional Web with LinkedIn</title>
<description>A great resource for finding documentation and answers related to developing on the LinkedIn Platform</description>
</content>
</post>
您可以在此处获取更多详细信息:https ://developer.linkedin.com/blog/sharing-content-your-group-discussion-posts
于 2012-11-01T17:43:17.570 回答