share.php标签和facebbok

时间:2016-04-02 00:51:52

标签: facebook meta

大家好我使用share.php 显然http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.site.com%2Fid.php%3Fid%3D13参考链接我把相应的目的地,但在第一次点击的Facebook没有显示它的标题它的图像根据点击链接正在解决

ps我不能使用api我不可能有一把钥匙

1 个答案:

答案 0 :(得分:1)

不需要API密钥,Facebook使用Open Graph来获取此数据,因此您真正需要做的就是将og:meta标记放入您正在共享的页面的源HTML中:

<meta property="og:title" content="Title of content"/>
<meta property="og:type" content="Type of content"/>
<meta property="og:site_name" content="Your Site Name"/>
<meta property="fb:admins" content="YOUR_FACEBOOK_USER_ID"/>
<meta property="og:url" content="http://www.example.com/id.php?id=13"/>
<meta property="og:image" content="http://example.com/img/image.jpg"/>
<meta property="og:description" content="Description of this content"/>