LinkedIn Share Button
Thu 17 Sep 2015, 20:52

You just need to add this code in your page:
<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script><script type="IN/Share" data-counter="right"></script>
if you want to use custom button then you can make it at https://developer.linkedin.com/plugins/share and you will get the code like above.
read more
Twitter Share Button
Thu 17 Sep 2015, 20:49

You just need to add this code in your page:
<a href="https://twitter.com/share" class="twitter-share-button" data-via="[yourTwitterUsername]">Tweet</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
if you want to use custom button then you can make it at https://about.twitter.com/resources/buttons#tweet and you will get the code like above.
read more
Pinterest Pin It Button
Thu 17 Sep 2015, 20:44

You just need to add this code in your page:
<a data-pin-do="buttonBookmark" null href="//www.pinterest.com/pin/create/button/"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script async defer src="//assets.pinterest.com/js/pinit.js"></script>
if you want to use custom button then you can make it at https://developers.pinterest.com/tools/widgets/builder/
read more
Using Facebook API
Wed 16 Sep 2015, 06:43

This is my step:
Go to https://developers.facebook.com/
Create new apps
I’m using Javascript SDK because i think this SDK can be use in any web programming language.
This is the code for share, like, and comment:
Add this script to load the SDK:
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
read more