html 分享链接到facebook
在网页中分享一个网页到facebook。
在线测试-分享网页到facebook
设置meta
分享-facebook-开放图谱标记
<meta property="og:url" content="https://www.eoway.cn/show/share/facebook.html" /> // 自定义需要分享的链接
<meta property="og:type" content="article" />
<meta property="og:title" content="这是一个网页title" />
<meta property="og:description" content="这是网页的description" />
<meta property="og:image" content="http://oss.eoway.cn/upload/files/2020-05-02-20-37-08-rn383.jpg" /> // 自定义图片
- 以上mata标签只需要编辑content的内容
- url不可以带参数
// 错误的url
https://www.eoway.cn/show/share/facebook.html?id=123
测试您的标记
设置好后,可以在调试器中检测网页设置
facebook-分享调试器
分享到facebook
var url = 'https://www.eoway.cn/show/share/facebook.html'
window.open('https://www.facebook.com/sharer/sharer.php?u='+url)
url必须为meta设置的url