others-facebook分享
others-facebook分享
前篇
- 官方
Web 分享
这种分享方式可以不接入 sdk, web/android/ios 都可用, 直接拉起 fb app 分享, 只能分享 网页链接
- 比如分享网站 https://aaa.bbb.com , 在网页里加入元数据 - 1 
 2
 3
 4
 5
 6
 7
 8
 9- <head> 
 <meta property="og:url" content="https://aaa.bbb.com">
 <meta property="og:type" content="website">
 <meta property="og:title" content="分享的标题">
 <meta property="og:description" content="分享的描述">
 <meta property="og:image" content="分享图片链接">
 <meta property="og:image:width" content="600">
 <meta property="og:image:height" content="600">
 </head>
- 生成 Facebook 的分享链接 - 1 
 2- // https://www.facebook.com/sharer/sharer.php?u=[url encode 后的 网站链接] 
 https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faaa.bbb.com
- 直接浏览器测试分享链接 