私は、java でのリンクイン API の管理を認証するために、linkedin-j を使用しています。ユーザー情報、メールアドレスなどの取得に問題はありません。共有を投稿するのに問題はありません:
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postShare(title, text, title, title, VisibilityType.ANYONE);
リンクインのタイムラインにすぐに表示されますが、ネットワークの更新を投稿しようとすると、エラーは表示されませんが、更新はタイムラインに表示されません
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postNetworkUpdate(update);
誰かがこれと同じ問題を抱えていますか?
前もって感謝します!