我使用Facebook应用程序(shortstack)来制作我的页面。 我希望在与短网址共享时个性化发布。 我有测试来创建一个开放的图形元标记,但它不起作用。
答案 0 :(得分: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/
希望有所帮助