0

How facebook identify the entered hyperlink and get data from that link. it shows thumbnails, text, pictures, etc. Does facebook using any javascript for framework?

4

1 回答 1

0

开放图形协议 (OGP)帮助 Facebook 从 URL 获取特定数据,即网页标题、站点名称、描述......等在您的站点(页面)上安装 OGP

添加:prefix="og: http://ogp.me/ns#"进入<html>标签

和:

<meta property="og:title" content="{Title}" />
<meta property="og:type" content="{site_type}" />
<meta property="og:url" content="{page_URL}" />
<meta property="og:image" content="{Thumbnail}" /> 

<head>标签之间。

以上是基本的元属性你可以在OGP上阅读更多关于它的信息

于 2013-10-20T08:37:54.187 回答