评论来自android应用程序的linkedin中的更新

时间:2012-10-01 06:33:13

标签: android comments linkedin

有人可以帮我发送对linkedin中某个帖子的评论/回复吗?

我能够使用人员ID使用以下代码通过我的Android应用程序发送直接消息链接。

id = update.getUpdateContent().getPerson().getId()

.....

LinkedInAccessToken accessToken = new LinkedInAccessToken(
            linkedInTokens[0], linkedInTokens[1]);
    LinkedInApiClientFactory clientFactory = LinkedInApiClientFactory
            .newInstance(LinkedInConstants.LINKEDIN_CONSUMER_KEY,
                    LinkedInConstants.LINKEDIN_CONSUMER_SECRET);
    LinkedInApiClient client = clientFactory
            .createLinkedInApiClient(accessToken);
    client.sendMessage(Arrays.asList(id), "subjectText",
                    "postingText");

任何人都可以帮我回帖吗?

谢谢

1 个答案:

答案 0 :(得分:0)

假设您知道要评论的更新的网络更新密钥,那么执行此操作的API调用将是:

POST http://api.linkedin.com/v1/people/~/network/updates/key= {NETWORK UPDATE KEY} / update-comments

评论的XML正文的一个例子:

<?xml version='1.0' encoding='UTF-8'?>
<update-comment>
  <comment>Really great article!</comment>
</update-comment>