我使用 Facebook 应用程序(shortstack)来制作我的页面。当我与短 URL 共享时,我想个性化发布。我已经测试创建一个开放的图形元标记,但它不起作用。
问问题
6934 次
1 回答
6
您需要在页面中放置 opengraph 元标记,例如
<meta property="og:title" content="The Rock"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/>
<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>
<meta property="og:site_name" content="IMDb"/>
<meta property="fb:admins" content="USER_ID"/>
<meta property="og:description"
content="A group of U.S. Marines, under command of
a renegade general, take over Alcatraz and
threaten San Francisco Bay with biological
weapons."/>
示例在这里找到它http://developers.facebook.com/docs/opengraphprotocol/
您还需要将顶部标签更改为
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">
然后它应该可以正常工作:)
要调试您的页面并查看您是否正确实现了 opengraph 标签,请使用此处的调试器工具:http: //developers.facebook.com/tools/debug/
希望有帮助
于 2012-04-16T17:06:21.797 回答