I'm working with facebook share. Here is my sample code:
function fbShare(url, title, descr, image, winWidth, winHeight) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('http://www.facebook.com/sharer.php?s=100&p[title]=' + encodeURIComponent(title) + '&p[summary]=' + encodeURIComponent(descr) + '&p[url]=' + encodeURIComponent(url) + '&p[images][0]=' + encodeURIComponent(image), 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight);return false; } I have some article want to share to facebook. there are some article successful with title, content and image. but some article share title or content only. I have checked my meta tag that was fine. So i don't know what happens now. Can anybody help me?
Thanks a lot.