我在Ruby on Rails上运行了一个应用程序。我正在使用Facebook API来分享帖子。是否可以在共享帖子中添加HTML代码片段? 目前,只有文字和页面链接包含在帖子中。但我基本上需要添加一部分实际页面。
答案 0 :(得分:0)
您无法直接注入HTML代码。 Facebook检查您的页面并使用它的原始文本内容。您可以使用Open Graph元标记更好地控制Facebook在故事中使用的信息。
您可以在此处详细了解:https://developers.facebook.com/docs/sharing/best-practices
例如,在<head>
中,您可以添加以下标记:
<meta property="og:title" content="This will be your article title" />
<meta property="og:description" content=" A detailed description of the piece of content, usually between 2 and 4 sentences. This tag is technically optional, but can improve the rate at which links are read and shared." />