Facebook 分享按钮参数无法正常工作?

发布于 2024-12-08 02:21:59 字数 740 浏览 0 评论 0原文

我使用这个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伤痕我心 2024-12-15 02:21:59

请参阅Facebook Sharer 如何选择图像? 来自 OffBySome 的回答可以比我更好地解释。


一些更好的答案的摘录:

在 HTML 的 head 部分中,您需要元标记:

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

您可能需要使用 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:

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

You may need to force Facebook servers to clear the cache with the Facebook Url Debugger.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文