有人可以帮我发送对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");
任何人都可以帮我回帖吗?
谢谢
答案 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>