I would like to share via the facebook sharer link on image click on my website.
Here is the function I currently use :
function shareFacebook()
{
// Parameters
var title = "Test";
var url = "http://test.creabox.biz/Crash%20tests/Facebook%20sharer/";
var description = "Test de partage sur page fan...";
var image0 = "http://images.forum-auto.com/mesimages/676992/camion-tire-par-un-boeuf1213352668.1216465659.jpg";
// Encode complete URI
var completeURL = encodeURI("http://www.facebook.com/sharer.php?s=100&p"+
"[title]="+title+"&p"+
"[url]="+url+"&p"+
"[images][0]="+image0+"&p"+
"[summary]="+description);
// Facebook popup
window.open(completeURL, "sharer", "menubar=1, resizable=1, width=640, height=350");
// Debug
console.log(new Date(), completeURL);
document.getElementById('debugDiv').innerHTML = completeURL;
return false;
}
With this function, I can share on my wall using my everyday user, but when I'm connected through my fanpage, I cannot share anything. The popup appears but when I validate, the button goes to grey and goes back to normal after a couple of seconds.
To illustrate my problem, I have created a page wich you can see sources at : http://test.creabox.biz/Crash%20tests/Facebook%20sharer/
Thanks in advance for your help. Best regards
