Facebook 分享按钮参数无法正常工作?
我使用这个API:http://developers.facebook.com/docs/share/ 在页面底部,他们提到了一种创建我们自己的按钮的方法。
所以我的代码是这样的:
<body>
<?php
function encodeURIComponent($str) {
$revert = array('%21' => '!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')');
return strtr(rawurlencode($str), $revert);
}
?>
<a href="http://www.facebook.com/sharer.php?u=<?php echo encodeURIComponent('http://www.google.com'); ?>&t=<?php echo encodeURIComponent('It is the google website'); ?>">Share this2</a>
</body>
但它不能正常工作!并且它始终将页面标题显示为共享对话框中的标题!
I use this API: http://developers.facebook.com/docs/share/
At the bottom of the page they have mentioned a way to create our own button.
So my code is like this:
<body>
<?php
function encodeURIComponent($str) {
$revert = array('%21' => '!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')');
return strtr(rawurlencode($str), $revert);
}
?>
<a href="http://www.facebook.com/sharer.php?u=<?php echo encodeURIComponent('http://www.google.com'); ?>&t=<?php echo encodeURIComponent('It is the google website'); ?>">Share this2</a>
</body>
But it is not working properly! And it always displays the page title as the title in the share dialog!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅Facebook Sharer 如何选择图像? 来自 OffBySome 的回答可以比我更好地解释。
一些更好的答案的摘录:
在 HTML 的 head 部分中,您需要元标记:
您可能需要使用 Facebook Url Debugger 强制 Facebook 服务器清除缓存。
See How does Facebook Sharer select Images? answer from OffBySome can explain better then I.
An excerpt from some of the better answers:
In the head section of your HTML you need meta tags:
You may need to force Facebook servers to clear the cache with the Facebook Url Debugger.