我们有一个赞按钮。我们使用以下内容填充 data-href:http: //foo.com/stuff/1?tracking=member1
当 facebook 从我们的页面中抓取“og”元标记中定义的标题和图像时,它会忽略 data-href 中的原始请求参数。这意味着我们不能根据推荐成员自定义标题和图像,但这正是我们需要做的。
我们已经尝试了 data-href 和 og:url 字段的各种值组合,但均无济于事。有没有人有任何想法?
在头部标签内:
<meta content="This title should be based on the referring member" property="og:title"></meta>
<meta content="Content would go here" property="og:description"></meta>
<meta content="http://foo.com/stuff/1" property="og:url"></meta>
<meta content="http://foo.com/images/hello.png" property="og:image"></meta>
<meta content="Foolandia" property="og:site_name"></meta>
然后是我们的like按钮标签:
<fb:like data-action="like" data-href="http://foo.com/stuff/1" data-ref="member1" data-send="false" data-show-faces="false" />