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

I want to post linkedin update using its API and Javascript. Already created an applcation and got an API key from their and tried as follows,

  updateURL = "/people/~/person-activities";

  var BODY = {"contentType":"linkedin-html","body":"My first Update"};


   IN.API.Raw(updateURL)
    .method("POST")
    .body(JSON.stringify(BODY)) // tried .body(BODY) also but bad luck
    .result(function(result) {
        alert ("Updated");
    })
    .error( function(error) { console.log(error); })

But above script failed to post update and shows an error as follows,

Invalid xml {Expected elements 'recipients@http://api.linkedin.com/v1 
timestamp@http://api.linkedin.com/v1 title@http://api.linkedin.com/v1 
activity-url@http://api.linkedin.com/v1 app-id@http://api.linkedin.com/v1 app-data@http://api.linkedin.com/v1' instead of 'activity@http://api.linkedin.com/v1' here in element activity@http://api.linkedin.com/v1}"

What's wrong with me. Any help would be greatly appreciable.

Thanks

share|improve this question
When you run the above JavaScript, are you authenticated against the API? Did you include the API key in a script block in the <head> of the page? How are you authenticating, using the SignIn plugin? – Paul Mennega Aug 13 '12 at 14:25

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.