与自定义标题,图片,说明共享网页帖子

时间:2016-05-22 11:32:11

标签: php html facebook facebook-graph-api

用于在Facebook群组中共享网页帖子的最佳方式是什么?

让我们将此作为我的网站mywebsite.com/news.php
我的每条新闻都有独特的id

我的一篇网络帖子的链接是mywebsite.com/news.php?id=57

那么,当我想要分享此链接mywebsite.com/news.php?id=57时,如何制作自定义标题和图片?

我尝试使用facebook Graph API,但它对我没用。

当我粘贴网络帖子的链接时,我怎么能实现这一点  (例如:mywebsite.com/news.php?id=57)它根据我的网站帖子中基于帖子id定义的变量创建自定义图像和标题以进行共享 我页面上的每个帖子(每个id)都有自己的 $title, $image, $description, $url
当我复制网站链接时,它们需要用作标题,图像和网址。

1 个答案:

答案 0 :(得分:1)

你可以通过meta标签实现这一点facebook有一个工具,你甚至可以测试内容。

根据ID动态地将元标记添加到新闻页面。

<meta property="og:url" content="http://www.nytimes.com/2015/02/19/arts/international/when-great-minds-dont-think-alike.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="When Great Minds Don’t Think Alike" />
<meta property="og:description" content="How much does culture influence creative thinking?" />
<meta property="og:image" content="http://static01.nyt.com/images/2015/02/19/arts/international/19iht-btnumbers19A/19iht-btnumbers19A-facebookJumbo-v2.jpg" />

此处提供了更多详细信息:

https://developers.facebook.com/docs/sharing/webmasters