我想在我的django应用程序中使用“在Facebook上分享”功能,而不是新的“FB Like”。 但是我找不到如何实现它并设置描述,标题和图像来分享。
任何人都可以帮助我吗?
更新
我在做DeLonge的话。这是代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bra</title>
<link rel="image_src" href="http://site.com/images/logo.jpg" />
<meta name="description" content="description here">
</head>
<body>
<a name="fb_share" type="button" share_url="http://www.sharedomain.com/path/" href="http://www.facebook.com/sharer.php?u=http:/www.sharedomain.com/path&src=sp" style="text-decoration: none; ">Share</a><script src="http://static.ak.fbcdn.net/con
nect.php/js/FB.Share" type="text/javascript"></script>
</body>
</html>
但是当我点击按钮时,我看到了错误的结果:
想法?
答案 0 :(得分:3)
我同意“分享”按钮在某些情况下更有用。见代码:
<a name="fb_share" type="button_count" share_url="http://www.sharedomain.com/path/" href="http://www.facebook.com/sharer.php?u={INSERT ENCODED share_url HERE}&src=sp" style="text-decoration: none; ">Share</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
类型包括:1)button_count 2)按钮3)链接。
标题将来自页面本身。但是,要添加图标图片,只需将以下内容添加到您的HTML <head>
:
<link rel="image_src" href="http://www.sharedomain.com/path/thumbnail.jpg" />
我知道您正在开发django,我建议您对FB Share按钮进行硬编码。这是因为Facebook不再推动它,并且大多数API正在消失。