I'm trying to put a button to share content to Facebook, and with no success.
1) First attempt, using this URL:
'http://www.facebook.com/sharer/sharer.php?s=100&p[url]=http://www.nopoder.com.br/materias/24590/4/Page-title.html&p[title]='+encodeURIComponent('Title goes here')+'&p[images][0]=http://www.nopoder.com.br/imgs/materia/24590_a_pq.jpg&p[summary]='+encodeURIComponent('Description of the page')
It works fine when I share to my personal profile, but unexpected not to a fan page.
2) Second attempt, using the URL above:
'https://www.facebook.com/sharer/sharer.php?u=http://www.nopoder.com.br/materias/24590/4/Page-title.html'
Considering that page referenced in the above link have the tags:
<title>Title of the page</title>
<meta property="og:title" content="Title of the page" />
<meta name="title" content="Title of the page" />
<meta property="og:image" content="http://www.nopoder.com.br/imgs/materia/24590_a_pq.jpg" />
<meta rel="image_src" type="image/jpeg" href="http://www.nopoder.com.br/imgs/materia/24590_a_pq.jpg" />
<meta property="og:sumary" content="Description of the page" />
<meta name="description" content="Description of the page" />
<meta http-equiv="description" content="Description of the page" />
In this case only the URL is shared. No title, no description, no photo. Someone has already gone through this situation?