任何人都可以帮我对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");
谁能帮我回复一个帖子?
谢谢