Facebook Share doc is here: https://developers.facebook.com/docs/sharing/reference/share-dialog
It doesn't require user authentication to share on facebook.
Testing tility: http://www.fbrell.com/saved/2779dc018c325d85d650a3b723239650
<div class="page-header">
<h1>Share Dialog</h1>
</div>
<p>Click the button below to trigger a Share Dialog</p>
<div id="shareBtn" class="btn btn-success clearfix">Share</div>
<p style="margin-top: 50px">
<hr />
<a class="btn btn-small" href="https://developers.facebook.com/docs/sharing/reference/share-dialog">Share Dialog Documentation</a>
</p>
<script>
document.getElementById('shareBtn').onclick = function() {
FB.ui({
method: 'share',
display: 'popup',
href: 'https://developers.facebook.com/docs/',
quote: 'What a wonderful world'
}, function(response){});
}
</script>Alternatively you can use their quote to share instead:
https://developers.facebook.com/docs/plugins/quote
You may have to correctly set up the facebook og meta tags.