Google-加上通过 javascript 分享,使用自定义图片

Google-Plus sharing through javascript, with custom image

我想分享一些具体的 link 到 google 加上彻底 javascript,当时我得到了这个方法

window.open("https://plus.google.com/share?url=http://www.amazon.in/&t="+document.title, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');

在按钮 onclick 中使用此代码执行。我的问题是,当我尝试分享这个 link 时它会自动为那个 link 拍摄图像,但我想自定义我正在分享的 link 的图像,我该如何实现?

你不能。 Google+ 次分享从目的地 URL 获取摘要信息。更改默认选择的图像的唯一方法是在页面上 modify the markup

Google+ 从您的网页元中获取属性 tags.The url 从 link/canonical 中获取。因此,如果您想设置自定义图像以进行共享,则需要更改你的元标记。 例如

<meta property="og:image" content="image_path">

这里是 link: http://www.w3docs.com/learn-javascript/google-share.html