1

任何人都可以帮我对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");

谁能帮我回复一个帖子?

谢谢

4

1 回答 1

0

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

发布 http://api.linkedin.com/v1/people/~/network/updates/key= {网络更新密钥}/update-comments

注释的 XML 正文示例:

<?xml version='1.0' encoding='UTF-8'?>
<update-comment>
  <comment>Really great article!</comment>
</update-comment>
于 2012-10-04T23:35:29.720 回答