我正在尝试在Google Plus上分享我的页面..但问题是google plus正在使用我的网站徽标在Google Plus屏幕上显示为我的帖子图片。我希望它显示我的帖子图片而不是网站徽标..我怎么能这样做..我正在使用以下代码来分享链接 / + 1 /确认HL = RU&安培; URL =“> HTTPS:?//plusone.google.com//+1/confirm HL = RU&安培; URL =
有什么方法可以设置我的iimage网址,它会在Google Plus上显示为我的帖子图片。 像这样的东西/+1/confirm?hl=ru&url=URL&img=ImageUrl">https://plusone.google.com//+1/confirm?hl=ru&url=URL&img=的ImageUrl
我也试过这个但没有成功,可能是我在尝试错误的网址。如果有人知道请在这里分享URL。 感谢。
答案 0 :(得分:3)
我也遇到了同样的问题。您不能将+1用于您自己的功能或来电者。您需要使用Google代码才能实现这一目标。
然而,您可以使用javascript共享窗口传递您自己的参数。
这就是我使用的。
function shareToGooglePlus(destination,title,description,imageurl)
{
var go = "https://plus.google.com/share?";
var url = "url="+encodeURIComponent(destination);
var title = "title="+encodeURIComponent(title);
var description = "content="+encodeURIComponent(description);
var images = "image="+encodeURIComponent(imageurl);
this.openWindow(go+url+"&"+title+"&"+description+"&"+images)
}
生成的url是一个用url打开的新窗口:
https://plus.google.com/share?url=http%3A%2F%2Fwww.ortho.nl%2Forthomoleculair-blog%2Fnieuws%2F2014%2Fvitamine-c-en-chemo%2F&title=Vitamine%20C%20en%20chemotherapie&content=Vitamine%20C%20en%20chemotherapie%0A%0AHet%20ondergaan%20van%20een%20behandeling%20met%20chemotherapie%20is%20%C3%A9%C3%A9n%20van%20de%20zwaarste%20beproevingen%20die%20iemand%20met%20kanker%20vaak%20moet%20d&image=https%3A%2F%2Fwww.ortho.nl%2Fcss%2Fafbeeldingen%2Fwebsite%2Ftwitter_photo.jpg
如果您想使用谷歌的+1按钮,我建议您在网站上使用微格式
答案 1 :(得分:1)
尝试使用og:image
元属性:
<meta property="og:image" content="http://mylink.com/myimg.png">
看,它有效on my webpage