I need a simple share area with 3 share links. Don't want to use any online service - just simple share functionality. My go at that is based on post: Make Your Own Social Media Sharing Buttons .
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<ul class="sharing-buttons">
<li><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url={{url | encodeURIComponent}}&summary={{text}}&source={{via}}" target="_blank"><i class="fa fa-linkedin-square"></i>Share on linkedin</a></li>
<li><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u={{url | encodeURIComponent}}" target="_blank"><i class="fa fa-facebook-square"></i>Share on Facebook</a>
</li>
<li><a class="twitter" href="https://twitter.com/intent/tweet?url={{url | encodeURIComponent}}&text={{text}}&via={{via}}" onclick="javascript:window.open(this.href,'','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=420,width=550');return false;"><i class="fa fa-twitter-square"></i>Tweet</a>
</li>
<li><a class="google-plus" href="https://plus.google.com/share?url={{url | encodeURIComponent}}" onclick="javascript:window.open(this.href,'','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa fa-google-plus-square"></i>Share on Google+</a>
</li>
</ul>
Sharing links is a living thing. Providers like Facebook and Twitter can change the interface whenever they want (its a free service).
The sharer will no longer accept custom parameters and facebook will pull the information that is being displayed in the preview the same way that it would appear on facebook as a post, from the url OG meta tags.
Read more about Working with Web intents . I have choosen not to follow all suggestions, in the name of simplicity.
Read more about Google+Platform > Share .