我正在创建一个社交网站,显示来自用户朋友的状态Feed。我想添加一个按钮,当用户点击它时,他们可以将状态分享到他们自己的状态Feed,他们的朋友可以看到共享项目。如何实现?如何设置数据库和查询?
由于
答案 0 :(得分:0)
要创建具有共享按钮的Facebook页面,您可以使用
href = "http://www.facebook.com/sharer.php?u=<url to be shared>"
的官方文档
要创建Google+分享按钮,只需添加以下Google Developers Documentation
<!-- Place this tag where you want the share button to render. -->
<div class="g-plus" data-action="share"></div>
<!-- Place this tag after the last share tag. -->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
注意:这两项都可以直接放在您网站的html
页面上。