I have seen conflicting information on how to best implement Open Graph namespaces. Specifically, the Open Graph website uses a few different methods, and the Facebook Open Graph examples use other methods.
开放图表网站实例(使用超文本预先定位特性):
<html prefix="og: http://ogp.me/ns#">
开放图表网站源代码(使用超文本XMLNS特性):
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#">
Facebook的开放图表文件(利用欧洲开发协会的预先确定特征):
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
Facebook 开放图表文件编号2(使用超文本XMLNS特性):
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
What is the recommended method or does it not even matter?