LinkedIn グループへの LinkedIn API、OmniAuth-LinkedIn、および LinkedIn gem 投稿フィードを使用するにはどうすればよいですか?
質問する
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 に答える