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
<head>of the page? How are you authenticating, using the SignIn plugin? – Paul Mennega Aug 13 '12 at 14:25