根据我的理解FB feed对话框接受图像的url链接如何在Feed对话框中从本地文件或Img对象发送或共享图像
答案 0 :(得分:1)
Feed Dialog
只需要picture
参数作为网址。因此,您必须将其上传到某个服务器并为其提供网址。
OR,
您可以使用Photo API将照片发布到相册中。您可以使用图像数据上传本地图像。事实上,这对你的案例更有用
答案 1 :(得分:-1)
Facebook从您想要分享的页面读取元数据,并获取该信息以构建共享/提要对话框:
在您要分享的页面上,您需要添加标题:
<meta property="og:url" content="URL" />
<meta property="og:title" content="TITLE" />
<meta property="og:description" content="DESCRIPTION" />
<meta property="og:type" content="website" />
<meta property="og:image" content="IMAGE URL" />
<meta property="og:image:secure_url" content="SECURE IMAGE URL (HTTPS)" />
您可以在此处调试您要分享的网站:https://developers.facebook.com/tools/debug