Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would Like to post a message on the LinkedIn by my app.

I successfully got the token and secret key. Now I would like to post an message.

Please see the code below.

try
{
    Log.i("LinkedinSample", "verifier: " + verifier);

    LinkedInAccessToken accessToken = LinkedinDialog.oAuthService.getOAuthAccessToken(LinkedinDialog.liToken, verifier); 
                    LinkedinDialog.factory.createLinkedInApiClient(accessToken);
token=accessToken.getToken();
secret=accessToken.getTokenSecret();

Log.i("LinkedinSample", "ln_access_token: " + accessToken.getToken());
Log.i("LinkedinSample", "ln_access_token: " + accessToken.getTokenSecret());

DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPost post = new HttpPost("https://api.linkedin.com/v1/people/~/shares");
System.out.println("the value of"+ getConsumer());

try{
getConsumer().sign(post); 
post.setHeader("content-type", "text/XML");
String myEntity = "<share><comment>This is a test</comment><visibility><code>anyone</code></visibility></share>";
post.setEntity(new StringEntity(myEntity));
org.apache.http.HttpResponse response = httpclient.execute(post);
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") ||

response.equals("false")) {

showToast("Blank response.");

}
else {

showToast("Message posted to your LinkedIn !");

}  finish();

} catch (Exception e) {

showToast("Failed to post to wall!");
e.printStackTrace();
finish();
}

And I have the method getConsumer as below:

public  OAuthConsumer getConsumer() {
        OAuthConsumer consumer = new CommonsHttpOAuthConsumer(LinkedInConstants.LINKEDIN_CONSUMER_KEY,LinkedInConstants.LINKEDIN_CONSUMER_SECRET );
 consumer.setTokenWithSecret(token, secret);
 return consumer;
}

The problem is it always gives the message that the update is posted, but it is never actually posted. What did I miss?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.