Linkedin share <a> med et callback
Hej alle sammen. Nogen der kan hjælpe med et eksempel på et stykke kode der kan SHARE på linkedin via et <a> der sender et callback tilbage om der sendt noget eller ej.<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: q183bzaxxxx
authorize: true
</script>
<<script type="text/javascript">
function share_linkedin(){
IN.API.Raw(likeURL)
.method("POST")
.body("true")
.body("
{
"share": {
"comment": "83% of employers will use social media to hire: 78% LinkedIn, 55% Facebook, 45% Twitter [SF Biz Times] http://bit.ly/cCpeOD",
"content": {
"title": "Survey: Social networks top hiring tool - San Francisco Business Times",
"submitted-url": "http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2010/06/28/daily34.html",
"submitted-image-url": "http://images.bizjournals.com/travel/cityscapes/thumbs/sm_sanfrancisco.jpg"
},
"visibility": { "code": "anyone" }
}
}
")
.result(function(result) {
alert ("Der er delt noget");
})
}
share_linkedin();
//Denne funktion binder jeg på <a> senere.
</script>
Håver nogen kan hjælpe