2012-11-01 60 views

回答

1

如果您正在使用LinkedIn的API,那麼你只需要做出一個電話後,像這樣:

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

+0

你有沒有使用過任何Ruby gem(wrapper)。我仍然困惑我是否可以使用LinkedIn Gem進行身份驗證併發布到我的小組......感謝您的回覆。這非常有幫助。 – zabumba

+1

查看Ruby OAuth gem(http://oauth.rubyforge.org)。用這個寶石進行認證的通話非常簡單。你可以參考這個文檔,因爲這裏有一些關於如何在Ruby中使用OAuth gem進行身份驗證的示例:https://developer.linkedin.com/documents/authentication –

+0

是的,我剛剛發現,但我從來沒有這樣做過。感謝您的額外提示。理想情況下,我希望允許用戶通過LinkedIn連接到我的應用程序。我想我需要嘗試並學習使用API​​和寶石。乾杯。 – zabumba

相關問題