I am using linkedin-j for authenticating an managing linkedin API in java. I have no problems in getting user info, email address and so. Even I don't have problems posting a share:
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postShare(title, text, title, title, VisibilityType.ANYONE);
I see it immediately in my linkedin timeline, but when I try to post a network update I get no erros but the update doesn't show in the timeline
final LinkedInApiClientFactory factory = LinkedInApiClientFactory.newInstance(consumerKeyValue, consumerSecretValue);
final LinkedInApiClient client = factory.createLinkedInApiClient(token, secret);
client.postNetworkUpdate(update);
Does anybody have this same problem?
Thanks in advance!