我必须在发布网站上的帖子之后自定义Facebook个人页面中显示的元素。
我看到图像,标题和链接都显示,但我也要显示帖子描述。
我读过一些“可能......的问题”,我应该使用Open Graph API,但我会做最简单的解决方案,包括“描述”。如果我可以使用Facebook提供的基本解决方案,那将是一个更好的解决方案。
有什么建议吗?
答案 0 :(得分:0)
您必须在帖子的HTML页面中使用Open Graph API标头。例如。在您网站的任何帖子页面中,您必须在HEAD部分添加类似的内容
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Site name" />
<meta property="og:title" content="Title" />
<meta property="og:description" content="Some description" />
<meta property="og:image" content="..." />