Helloe Friends我使用codeigniter创建了一个项目。我已经用facebook创建了一个登录信息。
但我想在Facebook上分享链接链接。
表示客户点击Facebook的分享。然后在客户端Facebook上的链接共享作为一个帖子。
谢谢。答案 0 :(得分:0)
您只需添加超链接即可在Facebook上分享内容。这样的事情可以解决问题:
http://www.facebook.com/sharer.php?s=100&p[summary]=SUMMARY&p[url]=URL&p[title]=TITLE
其中SUMMARY是您的链接摘要,TITLE是您要显示的标题,URL是URL。
您还需要使用urlencode()
对此数据进行编码。
答案 1 :(得分:0)
您只需创建链接即可在Facebook上分享链接。
http://www.facebook.com/sharer.php?u=[EncodedURL]
您的链接将如下:
<a href="http://www.facebook.com/sharer.php?u=[EncodedURL-URl you want to share]" target="_blank">share</a>
或者如果你想要一个弹出窗口:
<script type="text/javascript">
function genericSocialShare(url){
window.open(url,'sharer','toolbar=0,status=0,width=648,height=395');
return true;
}
</script>
<a href="javascript:void(0)" onclick="javascript:genericSocialShare('[CustomSocialShareLink]')">[Social Media Share Text/Image]</a>
答案 2 :(得分:0)
我们可以通过这种方式与 Facebook 共享网页
http://www.facebook.com/sharer.php?u=URL
示例
我想在 Facebook 上分享我的网站帖子,只需将 URL 放在此链接中,假设我有这篇帖子我想在 Facebook 上分享
https://justhinter.com/typedef-and-union-in-c-programming/
现在我只需要将 替换为这个帖子 URL,您可以点击链接查看
http://www.facebook.com/sharer.php?u=https://justhinter.com/typedef-and-union-in-c-programming/
此网址过去接受标题和描述等参数,但不再支持且不应使用。