i am trying to integrate facebook share button in my website.
so i got this code when i google it.
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=xxxxxxxx";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-share-button" data-href="http://myhomepage.com" data-type="link"></div>
it working fine. but what i want is customize my title,summary,image.
i read this link but not getting how to do this.
can any one help me on this.
thank you.